如何调试 Facebook Credits API 回调?
我正在研究 Facebook Credits API 集成,但仍然没有找到如何在本地主机上调试 Facebook Credits 回调的解决方案...
我将不胜感激任何这样做的想法。
多谢!
I'm working on Facebook Credits API integration and still haven't found a solution of how to debug the Facebook Credits callback on localhost...
I will appreciate any idea of to do it.
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用名为 localtunnel 的工具,这是共享本地主机 Web 服务器的简单方法到世界其他地方。
通过运行以下命令使用 RubyGems 安装它:
在任何端口上运行本地 Web 服务器!假设您在端口 8080 上运行 Apache。
运行 localtunnel 并将其传递给共享端口
<预><代码>$ 本地隧道 8080
注意:第一次运行 localtunnel 时,您必须指向公共 SSH 密钥。
如果您需要帮助,请查看自述文件。
这是一个例子:
<预><代码>$ localtunnel -k ~/.ssh/id_rsa.pub 8080
您应该看到类似这样的内容:
注意:每次停止本地 Web 服务器时,您都应该再次运行 localtunnel 并更新 Facebook 应用程序配置。
You can use a tool called localtunnel, it's an easy way to share localhost web servers to the rest of the world.
Install it using RubyGems by running:
Run your local web server on any port! Let's say you're running Apache on port 8080.
Run localtunnel passing it the port to share
Note: the first time you run localtunnel you have to point to a public SSH key.
Check the README if you need help.
Here's an example:
You should see something like this:
Note: every time you stop your local web server you should run localtunnel again and update your Facebook app configuration.
您不能使用本地主机,因为 facebook 的公共服务器必须使用 HTTP(S) 来传输回调文件和从您的回调文件接收数据。您必须将此文件托管在面向公众的服务器上。
You cannot use your localhost since facebook's public servers must use HTTP(S) to transfer and receive data from you callback file. You must host this file on a public facing server.