HTTP POST リクエストの URL を作成するには?
質問する
2679 次
2 に答える
1
API ドキュメントによると、JSON データはPOST
URL パラメーターとしてではなく、メソッドのリクエスト ボディとして渡す必要があります。
したがって、次のようになります。
String data = "{\"data\": [{\"text\": \"I love Titanic.\"}, {\"text\": \"I hate Titanic.\"}]}";
URL url = new URL("http://www.sentiment140.com/api/bulkClassifyJson?appid=me@gmail.com");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setRequestMethod("POST");
// write the request body
connection.getOutputStream().write(data.getBytes("UTF8"));
// get the response and read it
InputStream in = connection.getInputStream();
于 2013-08-30T08:50:48.437 に答える