我只能从文档中运行hello world示例(GithubService)。
问题是当我运行我的代码时,我在onFailure()
使用JsonReader.setLenient(true)接受第1行的格式错误的JSON 第1列路径$
我的API采用POST参数值,因此不需要将它们编码为JSON,但它确实以JSON形式返回响应。
对于响应,我得到了使用工具生成的ApiResponse类。
我的界面:
public interface ApiService {
@POST("/")
Call<ApiResponse> request(@Body HashMap<String, String> parameters);
}
以下是我使用该服务的方式:
HashMap<String, String> parameters = new HashMap<>();
parameters.put("api_key", "xxxxxxxxx");
parameters.put("app_id", "xxxxxxxxxxx");
Call<ApiResponse> call = client.request(parameters);
call.enqueue(new Callback<ApiResponse>() {
@Override
public void onResponse(Response<ApiResponse> response) {
Log.d(LOG_TAG, "message = " + response.message());
if(response.isSuccess()){
Log.d(LOG_TAG, "-----isSuccess----");
}else{
Log.d(LOG_TAG, "-----isFalse-----");
}
}
@Override
public void onFailure(Throwable t) {
Log.d(LOG_TAG, "----onFailure------");
Log.e(LOG_TAG, t.getMessage());
Log.d(LOG_TAG, "----onFailure------");
}
});
答案 0 :(得分:12)
如果您不想使用JSON编码的参数:
@FormUrlEncoded
@POST("/")
Call<ApiResponse> request(@Field("api_key") String apiKey, @Field("app_id") String appId);
答案 1 :(得分:4)
您应该知道如何编码post params。重要的还有以下@Header
注释。它用于在HTTP标头中定义使用的内容类型。
@Headers("Content-type: application/json")
@POST("user/savetext")
public Call<Id> changeShortText(@Body MyObjectToSend text);
你必须以某种方式编码你的邮政参数。要使用JSON进行传输,您应该将.addConverterFactory(GsonConverterFactory.create(gson))
添加到您的Retrofit声明中。
Retrofit restAdapter = new Retrofit.Builder()
.baseUrl(RestConstants.BASE_URL)
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
.addConverterFactory(GsonConverterFactory.create(gson))
.client(httpClient)
.build();
您问题的另一个原因可能是来自其余后端的JSON似乎不正确。您应该使用验证器检查json语法,例如http://jsonlint.com/