2.2 または 2.3.X バージョンで正常に動作している HttpClient を使用した http 要求に行き詰まりました。しかし、バージョン4.0.3のAndroidタブレットからそのリクエストを送信しようとすると、401エラーが発生します
これが私が実装した私のコードです。
HttpClient client = new DefaultHttpClient();
HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000); //Timeout Limit
HttpResponse response;
JSONObject json = new JSONObject();
try{
HttpPost post = new HttpPost("MYURL");
json.put("username", username);
json.put("password", password);
StringEntity se = new StringEntity( json.toString());
se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
post.setEntity(se);
response = client.execute(post);
/*Checking response */
statusCode = response.getStatusLine().getStatusCode();
System.out.println("Status Code=>" + statusCode);
if (statusCode == 200) {
result = EntityUtils.toString(response.getEntity());
Log.v("Login Response", "" + result);
} else {
response = null;
}
}
catch(Exception e){
e.printStackTrace();
//createDialog("Error", "Cannot Estabilish Connection");
}
あなたの最善の提案でこの問題を解決するのを手伝ってください。
ありがとう、