Android上的JSONRPC没有POST

时间:2011-04-20 13:06:40

标签: android json-rpc

我有以下代码:

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的内容。两者都是空的。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

解决了它。获取php中的数据:

$input = file_get_contents('php://input');