3

HttpGet でサーバーにリクエストを送信しようとしています。ただし、メッセージ本文は json オブジェクトである必要があります。unit_id と sercret_key が本文メッセージでサーバーに送信されないため、以下のコードは機能しません。どうすればいいですか?

JSON オブジェクト:

{
"unit_id": 12345,
"secret_key": "sdfadfsa6as987654754"
}

私のコード:

private HttpResponse makeRequest(int id, String secretKey) throws Exception {
    BasicHttpParams params = new BasicHttpParams();
    params.setParameter("id", id);

    params.setParameter("secret_key", secretKey);

    httpget.setHeader("Accept", "application/json");

    httpget.setParams(params);
    httpget.setHeader("Content-type", "application/json");

    // Handles what is returned from the page
    return httpclient.execute(httpget);
}

編集: phpでは、このリクエストは次のように行われます

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://0101.apiary.io/api/reservations/");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_POSTFIELDS, "{\n    \"unit_id\": 12345,\n    \"secret_key\":     \"sdfadfsa6as987654754\"\n}");
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json"));
$response = curl_exec($ch);
curl_close($ch);

var_dump($response);
4

3 に答える 3

3

基本的に、 HTTP/GETリクエストでボディ内の行データ (JSON など) を送信することはできません。プロトコルでは、それを行うことはできません。明らかに、Android でもそれを行うにはPOSTを使用する必要があります。:)

アップデート

私は間違っていました。実際、プロトコルではエンティティをリクエスト オブジェクトに入れることができます。このクラスは Apache の代わりに使用できますHttpGet

public class HttpGetWithEntity extends HttpEntityEnclosingRequestBase {

    public HttpGetWithEntity() {
        super();
    }

    public HttpGetWithEntity(URI uri) {
        super();
        setURI(uri);
    }

    public HttpGetWithEntity(String uri) {
        super();
        setURI(URI.create(uri));
    }

    @Override
    public String getMethod() {
        return HttpGet.METHOD_NAME;
    }
}

そして、次のように使用します。

HttpClient client = new DefaultHttpClient();
HttpGetWithEntity myGet = new HttpGetWithEntity("Url here");
myGet.setEntity(new StringEntity("This is the body", "UTF8"));
HttpResponse response = client.execute(myGet);

のソースHttpGetWithEntityここにあります

于 2013-09-17T06:25:53.703 に答える
2

リクエストに JSON オブジェクトを追加したい場合は、Post リクエストである必要があります。これを実行する方法は次のとおりです。

public static String sendComment (String commentString, int taskId, String sessionId, int displayType, String url) throws Exception{

    //creating map object to creat Json object from it
    Map<String, Object> jsonValues = new HashMap<String, Object>();
    jsonValues.put("sessionID", sessionId);
    jsonValues.put("NewTaskComment", commentString);
    jsonValues.put("TaskID" , taskId);
    jsonValues.put("DisplayType" , displayType);
    JSONObject json = new JSONObject(jsonValues);

    //creating a post request.
    DefaultHttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost(url + SEND_COMMENT_ACTION);

    //setting json object to post request.
    AbstractHttpEntity entity = new ByteArrayEntity(json.toString().getBytes("UTF8"));
    entity.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
    post.setEntity(entity);

    //this is your response:
    HttpResponse response = client.execute(post);
    return getContent(response);    
}
于 2013-03-04T13:39:32.303 に答える
1

これは、それを行う方法の良い例であり、機能しています。

本体付きのApache HttpClient GET

しかし、このアプローチは RESTFUL api に反していると思います。

于 2013-03-04T14:44:09.820 に答える