0

私は次のコードを持っています:

JSONObject jsonRequest = new JSONObject();
jsonRequest.put("id", 1);
jsonRequest.put("method", "mymethod");
entity = new JSONEntity(jsonRequest);
HttpPost request = new HttpPost("http://192.168.1.103/foo/bar.php");
request.setEntity(entity);
HttpResponse response = httpClient.execute(request);

無関係なコードが削除されました

.phpページに投稿します。.phpページvar_dumpで、$_POSTと$_GETの両方の内容を確認するために呼び出します。どちらも空です。

何か案が?

4

1 に答える 1

0

解決しました。phpでデータを取得します。

$input = file_get_contents('php://input');
于 2011-04-26T19:03:24.607 に答える