我目前正在处理的应用的API使用JSON作为传递数据的主要方式 - 包括失败的响应方案中的错误消息(响应代码!= 2xx)。
我正在迁移我的项目以使用Square的OkHttp网络库。但是我很难解析所说的错误信息。对于OkHttp的response.body().string()
,显然只返回请求代码"解释" (Bad Request
,Forbidden
等)而不是"真实"正文内容(在我的例子中:描述错误的JSON)。
如何获得真正的反应体?使用OkHttp时,这是否可行?
作为一个例子,这是解析JSON响应的方法:
private JSONObject parseResponseOrThrow(Response response) throws IOException, ApiException {
try {
// In error scenarios, this would just be "Bad Request"
// rather than an actual JSON.
String string = response.body().toString();
JSONObject jsonObject = new JSONObject(response.body().toString());
// If the response JSON has "error" in it, then this is an error message..
if (jsonObject.has("error")) {
String errorMessage = jsonObject.get("error_description").toString();
throw new ApiException(errorMessage);
// Else, this is a valid response object. Return it.
} else {
return jsonObject;
}
} catch (JSONException e) {
throw new IOException("Error parsing JSON from response.");
}
}
答案 0 :(得分:5)
我感到愚蠢。我现在知道为什么上面的代码不起作用:
// These..
String string = response.body().toString();
JSONObject jsonObject = new JSONObject(response.body().toString());
// Should've been these..
String string = response.body().string();
JSONObject jsonObject = new JSONObject(response.body().string());
TL; DR 它应该是string()
而不是 toString()
。