我有以下代码:
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 的内容。两者都是空的。
任何想法?