Facebook Connect按钮 - 页面是多次刷新

时间:2014-01-02 13:53:19

标签: facebook

我想通过facebook连接登录我的网站,但我有facebook连接BUTTON的问题。当我点击这个按钮时,我正在登录,但页面是多次刷新的。

这是我的代码:

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId: 'xxxxxyyyxxxx',
      cookie: true,
      xfbml: true,
      oauth: true
    });
    FB.Event.subscribe('auth.authResponseChange', function(response) {
 if (response.status === 'connected') {
   window.top.location = 'http://mystite.pl/login.php?mode=fb_login';
 }
 });
  };

  (function() {
    var e = document.createElement('script'); e.async = true;
    e.src = document.location.protocol +
      '//connect.facebook.net/pl_PL/all.js';
    document.getElementById('fb-root').appendChild(e);
  }());

</script>

问题在哪里?

1 个答案:

答案 0 :(得分:0)

就我而言,通过js sdk登录到fb后有一个页面刷新(不是100%肯定)。

你还有另一次刷新

FB.Event.subscribe('auth.authResponseChange', function(response) {
     if (response.status === 'connected') {
       window.top.location = 'http://mystite.pl/login.php?mode=fb_login';
     }
 });