I am trying to upload a file using retrofit 2.0. Apart from file, I have few other params to be send with form data which include a boolean type also. My request declaration is -
@Multipart
@POST("/upload/abc")
Call<UploadResponse> uploadToServer(@Part("img_file\";filename=\"image") RequestBody file,
@Part("access_token") RequestBody sessionKey,
@Part("is_final") Boolean isFinal,
@Part("sequence_id") Integer sequenceId,
@Part("entity_id") RequestBody entityId,
@Part("image_type") RequestBody imageType);
I am using GsonConverterFactory. I tried 2 approaches -
(1) Instead of @Part("is_final") Boolean isFinal
I used @Part("is_final") RequestBody isFinal
and sending it with RequestBody.create(MediaType.parse("text/plain"), String.valueOf(true))
(2) Using @Part("is_final") Boolean isFinal
and sending with Boolean.true.
In both the cases, "is_final" received on server side is Unicode or as a String instead of boolean value.
What is the best way to achieve this
I made it work by -
Add compile 'com.squareup.retrofit2:converter-scalars:2.1.0'
to the gradle file.
While creating retrofit instance, add
Retrofit retrofit = new Retrofit.Builder()
.baseUrl("url")
.client(builder.build())
.addConverterFactory(ScalarsConverterFactory.create())
.addConverterFactory(GsonConverterFactory.create())
.build();
Now you can safely send primitive types with the request.
Example Request
Call<UploadResponse> uploadFile(@Part("img\"; filename=\"image") RequestBody file,
@Part("session_key") String sessionKey,
@Part("is_final") Boolean isFinal);
Call this method using -
RequestBody fBody = RequestBody.create(null, someFile);
service.uploadFile(fBody, "some_string_session", true);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With