gpt4 book ai didi

php - 为什么我登录 Facebook 后页面没有刷新?

转载 作者:行者123 更新时间:2023-12-01 22:50:04 34 4
gpt4 key购买 nike

我一直在尝试将 Facebook 登录添加到我的页面。我使用以下脚本在我的页面上放置了 facebook 登录按钮:

    <script src="http://connect.facebook.net/en_US/all.js">
</script>
<script>
FB.init({
appId:'<?php echo APP_ID;?>', cookie:true,
status:true, xfbml:true
});
</script>
<fb:login-button perms="email,user_checkins">
Login with Facebook
</fb:login-button>

它也显示了登录按钮。单击它时也会打开 Facebook 的登录屏幕。

成功登录后,弹出框将关闭,而不刷新父页面。

我错过了什么?

最佳答案

成功登录后您没有要求刷新页面:

// whenever the user logs in, we refresh the page
FB.Event.subscribe('auth.login', function() {
window.location.reload();
});

请参阅PHP-SDK example了解更多信息。

关于php - 为什么我登录 Facebook 后页面没有刷新?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5056356/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com