How to upload Multiple images in one Request using Retrofit 2 and php as a back end?
问题 I am making an app in which user can select multiple images and upload them to the server. I am using PHP as a backend and retrofit2 I tried all answers on stackoverflow but still did not resolve it. @Multipart @POST("URL/uploadImages.php") Call<Response> uploaImages( @Part List< MultipartBody.Part> files ); code for sending files Retrofit builder = new Retrofit.Builder().baseUrl(ROOT_URL).addConverterFactory(GsonConverterFactory.create()).build(); FileUploadService fileUploadService =