Facebook PHP 表单返回空 $_POST

发布于 2024-11-09 15:11:05 字数 581 浏览 0 评论 0原文

我最近一直在开发一些 Facebook 应用程序,但总是遇到同样的问题:我找不到在 iFrame Facebook 应用程序上使用 POST 方法发送表单的方法。返回的 $_POST 始终为空。

我发现的一个补丁是使用 GET 方法使用表单发送数据,并将其发送到画布页面脚本 URL,就像这样:

然后通过 $_REQUEST 获取我的数据。 我尝试了 POST /GET 方法与 CANVAS_PAGE/script.php / CANVAS_URL/script.php / script.php 操作的任意组合,这是唯一真正有效的东西。至少对我来说。

现在,我遇到的问题是我需要上传一个文件,然后我必须使用POST方法,然后回到最初的问题->我找不到使用 POST 方法发送表单的方法。返回的 $_POST 始终为空!

有人有答案吗?

I've been developing some Facebook apps lately and I always had the same problem: I can't find a way to send a form with a POST method on iFrame Facebook apps. The returned $_POST is always empty.

One patch I found is to send my data using a form using a GET method and to send it to the canvas page script URL, just like this: <form action="<?php echo CANVAS_PAGE; ?>script.php" method="GET" >
and then to get my data through $_REQUEST.
I tried any combination of POST /GET method with CANVAS_PAGE/script.php / CANVAS_URL/script.php / script.php action and this is only thing that actually works. AT least for me.

Now, the problem I have is that I need to upload a file and then I must use the POST method and then back to the initial problem -> I can't find a way to send a form with a POST method. The returned $_POST is always empty!!

Anybody has an answer to that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南街九尾狐 2024-11-16 15:11:05

找到答案了。

只要您将 $_REQUEST["signed_request"] 作为表单中名为“signed_request”的隐藏字段传递,Facebook 中的 post 方法就可以正常工作。

Answer found.

The post method in Facebook works fine as long as you pass the $_REQUEST["signed_request"] as a hidden field called "signed_request" in your form.

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