为什么 facebook 连接无法在此页面上运行?
我试图让用户在页面上使用他们的 Facebook 帐户登录,但由于某种原因,页面上的按钮没有任何反应。我到底做错了什么?链接:http://friendsconnect.org/Main.php。
I'm trying to get the user to login using their Facebook account on the page but for some reason the button on the page does nothing. What the heck am I doing wrong? Link: http://friendsconnect.org/Main.php.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将
FB.init
调用粘贴到我的 JavaScript 控制台中,然后点击“连接”按钮,我会看到通常的 Facebook Connect 窗口,因此您可能遇到了计时问题。尝试将您的FB.init
调用更改为:这样,在一切都设置完毕之前,它不会被调用。另外,您不需要所有这三个:
您只需要其中之一,可能是
jquery.curvycorners.min.js
版本。Pasting the
FB.init
call into my JavaScript console and then hitting the "connect" button got me the usual Facebook Connect window so you're probably having timing issues. Try changing yourFB.init
call to this:That way it won't be called until everything is all set up. Also, you don't need all three of these:
You only need one of them, probably the
jquery.curvycorners.min.js
version.