0

我希望我的 facebook 登录在我登录后得到刷新。就我而言,它会登录,但只有在我手动刷新页面后才会进入我的 Facebook 主页。我该如何解决这个问题?我正在使用 php。

4

1 回答 1

0
Well i was supposed to give this.. And i got it !!! 
<?php if ($userId) { 
  $userInfo = $facebook->api('/' + $userId); ?>
  Welcome <?= $userInfo['name'] ?>
<?php } else { ?>
<div id="fb-root"></div>
<fb:login-button></fb:login-button>
<?php } ?>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '<? echo('####'); ?>',
      status     : true, 
      cookie     : true,
      xfbml      : true,
      oauth      : true,
    });

    FB.Event.subscribe('auth.login', function(response) {
      window.location.reload();
    });
  };
于 2013-02-04T05:32:02.470 回答