我正在尝试使用http://loopj.com/android-async-http/&使用POST
方法。我送json&我的代码中的内容类型始终会显示错误消息。
org.apache.http.client.HttpResponseException:不支持的媒体类型
当我使用相同的json& amp;内容类型其工作正常。我不知道还需要设置什么才能正确执行它。
请参阅下面的代码。
// 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());
}
});
提前致谢。
答案 0 :(得分:0)
如果您在应用中获得org.apache.http.client.HttpResponseException: Unsupported Media Type
但在REST客户端中没有,则问题可能与您在POST活动中添加额外内容有关。服务器可能接收到太多(或可能太少)的参数,因此发回的是错误的响应。
如果没有看到您的实际帖子,我无法确定问题的确切位置,但我的建议是尝试查看服务器从您的POST接收的内容,并确保您在Android POST中发送的项目与REST API客户端完全POST。
答案 1 :(得分:0)
在我的情况下,问题在于我没有设置其中一个HTTP标头,所以我不得不添加:
.setHeader(HttpHeaders.CONTENT_TYPE,"multipart/form-data")
或任何您的内容类型......