final HttpClient hClient = new DefaultHttpClient();
final HttpPost hPost = new HttpPost(
"http://xxx.xxx");
try {
hPost.setHeader("Accept", "application/json");
hPost.setHeader("Content-type",
"application/json");
hPost.setEntity(new StringEntity(JSON));
// execute request
final HttpResponse response = hClient
.execute(hPost);
final HttpEntity entity = response.getEntity();
Android は 05-16 20:02:52.784 を返します: W/DefaultRequestDirector(15642): 認証エラー: これらの課題のいずれにも応答できません: {} を修正する方法がわかりません。問題はどこにあり、どうすれば修正できますか?