HTTP GET with request body RETROFIT

11 浏览
0 Comments

HTTP GET with request body RETROFIT

我在我的Android应用程序中使用Retrofit进行API调用。

我必须提交一个JSON的@Body。

@GET("api/")
void getData(@Body UserPostRequestBody request)

我收到错误消息

retrofit.RetrofitError: apiCall:非body的HTTP方法不能包含@Body或@TypedOutput。

你有什么想法吗?

0