Facebook SDK のgetLoginStatus
メソッドを使用して、ユーザーが既にアプリを承認しており、現在ログインしているかどうかを判断できます。ユーザーが FB を使用してサイトにログインする場合、再度ログインする必要はありません。
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
// the user is logged in and has authenticated your
// app, and response.authResponse supplies
// the user's ID, a valid access token, a signed
// request, and the time the access token
// and signed request each expire
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
} else if (response.status === 'not_authorized') {
// the user is logged in to Facebook,
// but has not authenticated your app
} else {
// the user isn't logged in to Facebook.
}
});
そのため、ユーザーは 1 回ログインするだけで、初回のみアプリを承認する必要があります。この方法の詳細については、こちらをご覧ください。