Retrofit 2とrxjavaを使用してapi呼び出しでプロフィール画像をアップロードしようとしています。応答は常に私に422 Unprocessable Entityというエラーを与えます。私のコードを与え、これを克服するための提案が必要です。Retrofit 2 Multipart file uploadエラー
@Multipart
@POST("api/update-profile-picture")
Observable<ProfilePicture> updateProfilePicture(
@Header("Authorization") String accessToken,
@Part("profile_picture") RequestBody profile_picture
);
// calling presenter method to update profile picture
public void updateProfilePictureImage(File file){
getMvpView().showProgress();
RequestBody reqFile = RequestBody.create(MediaType.parse("image/*"), file);
//MultipartBody.Part body = MultipartBody.Part.createFormData("profile_picture", file.getName(), reqFile);
oyeBuddyService.updateProfilePicture("Bearer" + " " + mPrefs.getOyeUserAccessToken(), reqFile)
.subscribeOn(mNewThread)
.observeOn(mMainThread)
.subscribe(new Observer<ProfilePicture>() {
@Override
public void onCompleted() {
getMvpView().hideProgress();
}
@Override
public void onError(Throwable e) {
getMvpView().hideProgress();
Log.e("error: ",e.getMessage());
}
@Override
public void onNext(ProfilePicture profilePicture) {
Log.e("response: ", profilePicture.toString());
getMvpView().onProfilePictureUpdated(profilePicture.profile_picture_url);
}
});
}
レスポンス--->
RetrofitModule: Received response for http://174.138.64.95/api/update-profile-picture in 4540.6ms
Date: Wed, 04 Oct 2017 10:30:53 GMT
Server: Apache/2.4.18 (Ubuntu)
Vary: Authorization
Cache-Control: no-cache, private
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 59
Content-Length: 99
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
Content-Type: application/json
E/error:: HTTP 422 Unprocessable Entity
これは、U https://github.com/square/retrofit/issuesを助けるかもしれません/ 696 – Anil
@Anilありがとうございます。それは –