我如何获取我的所有“内容”?来自 POST 请求中的请求正文?

发布于 2024-11-16 18:07:05 字数 603 浏览 2 评论 0原文

好吧,标题说明了我的所有猜测。

我尝试 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

め七分饶幸 2024-11-23 18:07:05

尝试 file_get_contents('php://input'); 或 PHP 全局 $HTTP_RAW_POST_DATA

Try file_get_contents('php://input'); or PHP global $HTTP_RAW_POST_DATA.

通知家属抬走 2024-11-23 18:07:05

完成此操作的最简单方法是将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文