我正在使用改造,需要上载图像,但状态码为400。
这是代码。
这是界面。
public interface SupportInterface {
//Get request for sending photo in chat
@Multipart
@POST("/api/upload-image")
Call<ResponseBody> getChatPhoto(@Header("Content-Type") String json,
@Header("Authorization") String token,
@Header("Cache-Control") String cache,
@Part("type") String type,
@Part("user_id") String userId,
@Part MultipartBody.Part image_path);
}
我正在使用标题+我也需要发送user_id并输入。所以我正在使用
@Part
。我做对了吗?这是初始化部分的改造。
public class ApiClient {
private static ApiClient instance;
OkHttpClient.Builder client = new OkHttpClient.Builder()
.readTimeout(10, TimeUnit.SECONDS)
.connectTimeout(10, TimeUnit.SECONDS)
.writeTimeout(10, TimeUnit.SECONDS);
client.addInterceptor(new Interceptor() {
@Override
public Response intercept(@NonNull Chain chain) throws IOException {
Request request = chain.request();
request = request.newBuilder()
.header("Cache-Control", "public, max-age=0")
.build();
return chain.proceed(request);
}
});
supportopApi = new Retrofit.Builder()
.baseUrl(endpoint)
.client(client.build())
.addConverterFactory(GsonConverterFactory.create())
.build()
.create(SupportopApi.class);
}
public Call<ResponseBody> getChatImage(MultipartBody.Part multipartBody) {
return supportopApi.getChatPhoto("application/json", There is my accessToken,
"no-cache", "5", This is userID, multipartBody);
}
}
如果我在这里做错了,请告诉我。
这是主要部分。
public void getChatImage() {
File file = new File("/storage/emulated/0/Download/s-l640.jpg");
RequestBody reqFile = RequestBody.create(MediaType.parse("multipart/form-data"), file);
MultipartBody.Part multiPartFile = MultipartBody.Part.createFormData("image", file.getName(), reqFile);
Call<ResponseBody> chatImageCall = apiClient.getChatImage(multiPartFile);
chatImageCall.enqueue(new Callback<ResponseBody>() {
@Override
public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
if (response.isSuccessful()) {
try {
Log.d(TAG, response.body().string());
} catch (IOException e) {
e.printStackTrace();
}
} else {
Toast.makeText(context, "Response is not successful: " + response.errorBody(), Toast.LENGTH_SHORT).show();
}
}
@Override
public void onFailure(Call<ResponseBody> call, Throwable t) {
Toast.makeText(getActivity(), "An error occurred", Toast.LENGTH_SHORT).show();
}
});
}
我收到错误的要求400。
最佳答案
@Header("Content-Type") String json
您声明内容类型为
JSON
,但实际上您将多部分(表单数据)传递给服务器因此,我认为您正在尝试执行以下操作:
@Header("Accept") String json
(接受来自服务器的JSON)
关于java - 改造图像上传返回错误请求400,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50228632/