改造v2-beta1 Multipart问题

时间:2015-09-15 15:20:21

标签: android rest retrofit

我将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);

有什么想法吗?

0 个答案:

没有答案