我将Retrofit v1.9升级到v2-Beta1,但当我想在多部分上传照片时,我遇到了这个问题:
Unable to create @Part converter for int (parameter #4)
这是我的界面:
@Multipart
@POST("/photos/upload")
Call<String> postPhoto(@Part("file") RequestBody f,
@Part("title") String title, @Part("resource_type") int type,
@Part("resource_id") long id);
有什么想法吗?