我正在使用retrofit2 + rxAndroid来使用REST。我想发送带有图像和文本的多部分请求。但有些东西不起作用而不是图像+文本我有这个“修剪,nshtml,最大| 140”。
这是我的要求:
select
这就是我构建RequestBody的方式
@Multipart
@POST("feed/post/add")
public Observable<VehicleSearchResponse>
addPost(@Header("Authorization") String token, @Header("Content-Type") String contenttype,
@Part("text") String message,
@Part("attached_images") RequestBody file);
请帮帮我。
答案 0 :(得分:0)
您是否尝试过使用:
MultipartBody.create(MultipartBody.FORM, bytes)
for attached_images部分?