私はAndroidでHTTPUrlConnectionを作成し、以下に示すように投稿用に準備しています
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setRequestProperty("content-type", "application/json");
byte [] encoded = Base64.encode((username+":"+password).getBytes("UTF-8"), Base64.DEFAULT);
//Basic Authorization
urlConnection.setRequestProperty("Authorization", "Basic "+ new String(encoded, "UTF-8"));
urlConnection.setDoInput(true);
urlConnection.setDoOutput(true);
//This gets implicitly set when DoOutput is True, but still let it be
urlConnection.setRequestMethod("POST");
//Required for POST not to return 404 when used on with a host:port combination
//http://stackoverflow.com/questions/5379247/filenotfoundexception-while-getting-the-inputstream-object-from-httpurlconnectio
urlConnection.setRequestProperty("User-Agent","Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20100101 Firefox/17.0");
urlConnection.setRequestProperty("Accept","*/*");
次に、JSONを準備しOutputStream
、接続のに書き込みます
JSONObject jsonObject = new JSONObject();
jsonObject.put("key1", "value1");
jsonObject.put("key2", "value2");
outputStreamWriter = urlConnection.getOutputStream ();
outputStreamWriter.write(jsonObject.toString().getBytes());
finally {
if (outputStreamWriter != null) try { outputStreamWriter.close(); } catch (IOException logOrIgnore) {}
}
リクエストを実行すると、サーバーが無効なjsonである空のPOSTデータを受信したため、ステータスが500になります。
同じことがウェブブラウザとカールからも機能します。GETは、同じパラメーターを使用してAndroidで動作します。私は何が欠けていますか?POSTリクエストのパラメータの設定方法に問題がありますか?