0

HTTPURLConnectionを使用してサーバーAPIへのPOSTメソッド呼び出しを行おうとしています。私の呼び出しの本文のJSONバージョンは次のとおりです。

{
    "grant_type"        : "password",
    "username"          : "perry.marange@zmod.co",
    "password"          : "password"
}

httpURLConnectionを使用してこの部分を追加するにはどうすればよいですか?

4

1 に答える 1

1

AndroidRest-Clientを使用してWebサービスにデータを送信できると思います

クラスを受講RequestMethod.javaRestClient.java、このリンクからhttps://github.com/TylerSmithNet/RESTclient-Android/tree/master/RESTclient-example/src/com/tylersmith/restclient

このようにプロジェクトでそれらを使用します

String webServiceUrl = "your-service-url";
RestClient client = new RestClient(webServiceUrl);
String serverResponse = "";
String inputJsonString = "{" + 
    "    \"grant_type\"        : \"password\"," + 
    "    \"username\"          : \"perry.marange@zmod.co\"," + 
    "    \"password\"          : \"password\"" + 
    "}";
client.setJSONString(inputJsonString);
client.addHeader("Content-Type", "appication/json"); // if required
try {
    client.execute(RequestMethod.POST);
    if (client.getResponseCode() != 200) {
        // response error
    }
    else
    {
                    // the response from server
        serverResponse = client.getResponse();
    }
} catch (Exception e) {
    // handle error
}
于 2012-07-04T09:48:28.993 に答える