我正在尝试使用http://loopj.com/android-async-http/&使用CCD_ 1方法。我正在发送json&在我的代码中的内容类型总是给出错误消息。
org.apache.http.client.HttpResponseException:不支持的媒体类型
当我使用相同的json&内容类型它的工作很好。我不知道我还需要设置什么才能正确执行它。
请看我下面的代码。
// creating JSON using GSON library
Login mLogin = new Login();
mLogin.setUserName(userName);
mLogin.setPassword(password);
Gson gson = new GsonBuilder().create();
String loginJSON = gson.toJson(mLogin);
mHttpEntity = new StringEntity(loginJSON);
// execute the http asynchronously using post http method
asyncHttpClient.post(getActivity(), URL, mHttpEntity, "application/json", new AsyncHttpResponseHandler() {
@Override
public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
Logger.d(TAG, responseBody.toString());
}
@Override
public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) {
Logger.d(TAG, responseBody.toString());
}
});
提前谢谢。
如果你在应用程序中得到了org.apache.http.client.HttpResponseException: Unsupported Media Type
,但在REST客户端中没有,那么问题可能与你在POST活动中添加了额外的东西有关。服务器可能接收到的参数太多(或可能太少),因此正在发回错误的响应。
如果没有看到您的实际帖子,我无法准确地指出问题所在,但我的建议是尝试查看服务器从您的post接收到了什么,并确保您在Android post中发送的项目与REST API客户端post完全匹配。
在我的案例中,问题在于我没有设置其中一个HTTP标头,所以我不得不添加:
.setHeader(HttpHeaders.CONTENT_TYPE,"multipart/form-data")
或者无论您的内容类型是什么…