我的代码是:
@FormUrlEncoded
@POST("/api/userlogin")
void getUserLogin(@Query("client_id")String id,@Query("client_secret")String secret,@Query("username")String uname, @Body HashMap<String, String> arguments, Callback<LoginResult> cb);
这给出了错误请帮助..
答案 0 :(得分:1)
Chage in @Body:
@Body TypedInput arguments
了解更多信息:
How to POST raw whole JSON in the body of a Retrofit request?