0

Facebook でアプリを作成しましたが、許可を求める前に、ユーザーがログインしているかどうかを確認し、いくつかのタスクを実行したいと考えています。

私はこれを試しました:

    $facebook   = new Facebook(array(
            'appId'  => $app_id,
            'secret' => $secret,
            'cookie' => true
        ));


    $user = $facebook->getUser();
    if ($user) {
      echo 'logged in';
    } else {
      echo 'not logged in';
    }

ただし、常に許可を求めます。

4

1 に答える 1

1

私はこのコードを使用しました:

<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
    FB.init({
      appId      : 'xxxxxxx', // App ID
      channelUrl : 'YOUR_URL/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });


    FB.getLoginStatus(function(response) {
        if (response.status === 'connected') {
                    //User Is Logged In and authorized
            var uid = response.authResponse.userID;
        } else if (response.status === 'not_authorized') {
            //User is Logged in and not authorized
        } else {
            // the user isn't logged in to Facebook.
        }
    });
};
</script>
于 2012-08-13T13:11:37.900 に答える