Hãy thử tiêu đề loại này cho Retrofit 1.9 và 2.0. Đối với loại nội dung Json.
@Headers({"Accept: application/json"})
@POST("user/classes")
Call<playlist> addToPlaylist(@Body PlaylistParm parm);
Bạn có thể thêm nhiều tiêu đề tức là
@Headers({
"Accept: application/json",
"User-Agent: Your-App-Name",
"Cache-Control: max-age=640000"
})
Tự động thêm vào tiêu đề:
@POST("user/classes")
Call<ResponseModel> addToPlaylist(@Header("Content-Type") String content_type, @Body RequestModel req);
Gọi cho bạn phương thức tức là
mAPI.addToPlayList("application/json", playListParam);
Hoặc là
Muốn vượt qua mọi lúc thì hãy tạo đối tượng HttpClient bằng http Interceptor:
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());
}
});
Sau đó thêm vào đối tượng trang bị thêm
Retrofit retrofit = new Retrofit.Builder().baseUrl(BASE_URL).client(httpClient).build();
CẬP NHẬT nếu bạn đang sử dụng Kotlin, hãy loại bỏ { }
nó nếu không nó sẽ không hoạt động