1

bad request認証を使用して json オブジェクトを送信しようとすると、エラーが発生します。How to send a JSON object over HttpClient Request with Android? を見ました。しかし、それは私の問題を解決しません。

public void getServerData() throws JSONException, ClientProtocolException, IOException {

    ArrayList<String> stringData = new ArrayList<String>();
    DefaultHttpClient httpClient = new DefaultHttpClient();
    ResponseHandler <String> resonseHandler = new BasicResponseHandler();

    byte[] data = "myusername:mypassword".getBytes("UTF-8");
    String encoding = Base64.encodeToString(data, Base64.DEFAULT);

    HttpPost postMethod = new HttpPost("http://url/email_check.json");
    postMethod.setHeader(HTTP.CONTENT_TYPE, "application/json");

    postMethod.setHeader("Authorization", "Basic " + encoding);

    JSONObject json = new JSONObject();
    json.put("email","somebody@email.com");


    postMethod.setEntity(new ByteArrayEntity(json.toString().getBytes("UTF8")));
    String response = httpClient.execute(postMethod,resonseHandler);
    Log.e("response :", response);
    }

この行String response = httpClient.execute(postMethod,resonseHandler);により、ClientProtocolException次のようになります。

cause: org.apache.http.client.HttpResponseException: Bad Request
detailMessage: Bad Request
stackState: (id=830103290336)
stackTrace: null
statusCode: 400

何が間違っているのですか?

4

0 に答える 0