Retrofit 1.9および2.0の場合は、このタイプのヘッダーを試してください。Jsonコンテンツタイプの場合。
@Headers({"Accept: application/json"})
@POST("user/classes")
Call<playlist> addToPlaylist(@Body PlaylistParm parm);
より多くのヘッダーを追加できます。
@Headers({
"Accept: application/json",
"User-Agent: Your-App-Name",
"Cache-Control: max-age=640000"
})
ヘッダーに動的に追加:
@POST("user/classes")
Call<ResponseModel> addToPlaylist(@Header("Content-Type") String content_type, @Body RequestModel req);
メソッドを呼び出すie
mAPI.addToPlayList("application/json", playListParam);
または
毎回渡したいし、httpインターセプターでHttpClientオブジェクトを作成します。
OkHttpClient httpClient = new OkHttpClient();
httpClient.networkInterceptors().add(new Interceptor() {
@Override
public com.squareup.okhttp.Response intercept(Chain chain) throws IOException {
Request.Builder requestBuilder = chain.request().newBuilder();
requestBuilder.header("Content-Type", "application/json");
return chain.proceed(requestBuilder.build());
}
});
次に、レトロフィットオブジェクトに追加します
Retrofit retrofit = new Retrofit.Builder().baseUrl(BASE_URL).client(httpClient).build();
Kotlinを使用している場合は更新し、{ }
それ以外の場合は削除してください。