在 wamp 本地运行 facebook 应用程序
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在
hosts
文件中放置一个条目,将虚假域名映射到127.0.0.1
类似于:
显然
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 to127.0.0.1
something like :
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.