在 wamp 本地运行 facebook 应用程序

发布于 2024-12-24 21:36:51 字数 197 浏览 1 评论 0原文

我正在尝试在 wamp 上运行我的 Facebook 应用程序。我从 git 下载了源代码,并复制了 www 目录(wamp/www)中的所有文件,并将该文件命名为 mynewherokuapp。我在 facebook website>url>http://localhost/mynewherokuapp/ 中设置。为什么我会收到此错误:“发生错误。请稍后再试。”。

I'm trying to run my facebook app on wamp. I downloaded my source code from git and copied all the files in the www directory (wamp/www) and named the file mynewherokuapp. I set in facebook website>url>http://localhost/mynewherokuapp/ . Why do i get this error: "An error occurred. Please try later.".

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

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

发布评论

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

评论(1

踏月而来 2024-12-31 21:36:51

您必须在 hosts 文件中放置一个条目,将虚假域名映射到 127.0.0.1
类似于:

127.0.0.1    fbDev.local.com

显然 fbDev.local.com 不是您拥有的真正域,但您的系统会将对该域的所有调用视为对 localhost (127.0.0.1) 的调用。
然后在您的应用程序设置中,将您的假域名放入 URL 字段中。

You'll have to place an entry in your hosts file mapping a fake domain name to 127.0.0.1
something like :

127.0.0.1    fbDev.local.com

Obviously fbDev.local.com is not a real domain owned by you, but your system will treat all calls to that domain as if they were to localhost (127.0.0.1).
Then in your app settings you place your fake domain in the URL fields.

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