Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Retrofit 2.0 Multipart Request, send boolean type in form data including file

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

like image 574
Ankit Aggarwal Avatar asked May 31 '17 19:05

Ankit Aggarwal


1 Answers

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);
like image 107
Ankit Aggarwal Avatar answered Sep 19 '22 14:09

Ankit Aggarwal