Post リクエストをサーバーに送信しようとしていますが、データ エラーが返されます。送信している正確なリクエスト行を確認したい。基本的に私はやっています:
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(SERVER);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("data1", data1));
nameValuePairs.add(new BasicNameValuePair("data2", data2));
....
httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
(here I want to see my request, something like:
'data1=data1&data2=data2' http://[server.url] )
HttpResponse response = httpClient.execute(httpPost);
HttpEntity entity = response.getEntity();
回答ありがとうございます