为什么 facebook 连接无法在此页面上运行?

发布于 2024-11-04 04:28:26 字数 169 浏览 0 评论 0原文

我试图让用户在页面上使用他们的 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 技术交流群。

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

发布评论

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

评论(1

梦途 2024-11-11 04:28:26

FB.init 调用粘贴到我的 JavaScript 控制台中,然后点击“连接”按钮,我会看到通常的 Facebook Connect 窗口,因此您可能遇到了计时问题。尝试将您的 FB.init 调用更改为:

<script type="text/javascript">
    $(document).ready(function() {
        FB.init({appId: '168032083219061', status: true, cookie: true, xfbml: true});
    });
</script>

这样,在一切都设置完毕之前,它不会被调用。另外,您不需要所有这三个:

<script src="http://friendsconnect.org/jquery_custom/jquery.curvycorners.source.js" type="text/javascript"></script>
<script src="http://friendsconnect.org/jquery_custom/jquery.curvycorners.packed.js" type="text/javascript"></script>
<script src="http://friendsconnect.org/jquery_custom/jquery.curvycorners.min.js" type="text/javascript"></script>

您只需要其中之一,可能是 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 your FB.init call to this:

<script type="text/javascript">
    $(document).ready(function() {
        FB.init({appId: '168032083219061', status: true, cookie: true, xfbml: true});
    });
</script>

That way it won't be called until everything is all set up. Also, you don't need all three of these:

<script src="http://friendsconnect.org/jquery_custom/jquery.curvycorners.source.js" type="text/javascript"></script>
<script src="http://friendsconnect.org/jquery_custom/jquery.curvycorners.packed.js" type="text/javascript"></script>
<script src="http://friendsconnect.org/jquery_custom/jquery.curvycorners.min.js" type="text/javascript"></script>

You only need one of them, probably the jquery.curvycorners.min.js version.

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