我如何获取我的所有“内容”?来自 POST 请求中的请求正文?
好吧,标题说明了我的所有猜测。
我尝试 print_r($_SERVER)
但我用 fiddler 制作的“后请求”没有显示。
在尝试了大约 1 小时后,我真的疯了:S
我真正想要的是发送一个请求正文中包含 JSON 的 POST 请求。然后我想 json_decode(request-body);
这样我就可以使用变量来回复。所以我不需要将我的变量放在 URL
编辑中:
这是我的帖子
$url = 'http.........jsonAPI/jsonTestAPI.php';
$post = array("token" => "923874657382934857y32893475y43829ufhgjdkfn");
$jsonpost = json_encode($post);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonpost);
$response = curl_exec($ch);
curl_close($ch);
Well title says all I guess.
I've tried to print_r($_SERVER)
but my 'post-request' I made with fiddler doesn't show up.
I'm really out of my mind after trying about 1 hour now :S
What I actually want is to send a POST request with JSON in the request-body. Then I want to json_decode(request-body);
This way I can use the variables to reply. So I don't need to put my variables in the URL
Edit:
This is my POST
$url = 'http.........jsonAPI/jsonTestAPI.php';
$post = array("token" => "923874657382934857y32893475y43829ufhgjdkfn");
$jsonpost = json_encode($post);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonpost);
$response = curl_exec($ch);
curl_close($ch);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
file_get_contents('php://input');
或 PHP 全局$HTTP_RAW_POST_DATA
。Try
file_get_contents('php://input');
or PHP global$HTTP_RAW_POST_DATA
.完成此操作的最简单方法是将 json 放入隐藏的输入字段中,然后使用 POST 提交包含的表单。
the easiest way to get that done would be to put your json into a hidden input-field and then have the containing form being submitted using POST.