如何使用改造在同一参数上添加多个图像/文件以及其他文本数据?
Single image is uploading perfectly using following interface
@Multipart
@POST("/users/updateProfile/")
public void updateProfileWithImage(
@Part("user_id") TypedString first_name,
@Part ("image") TypedFile image,
Callback<WebResponse> callback);
Run Code Online (Sandbox Code Playgroud)