最終更新:2013-12-11 (水) 10:39:37 (3788d)  

FB.getLoginStatus
Top / FB.getLoginStatus

https://developers.facebook.com/docs/reference/javascript/FB.getLoginStatus/

レスポンス

  • {
        status: 'connected',
        authResponse: {
            accessToken: '...',
            expiresIn:'...',
            signedRequest:'...',
            userID:'...'
        }
    }

status

  • connected. The person is logged into Facebook, and has logged into your app.
  • not_authorized. The person is logged into Facebook, but has not logged into your app.
  • unknown. The person is not logged into Facebook, so you don't know if they've logged into your app.

関連