私は次のコードを持っています:
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の両方の内容を確認するために呼び出します。どちらも空です。
何か案が?