ユーザーがログインしているかどうかを報告するFacebook Javascriptがあり、ユーザーがログインしていることをサイトに伝えることができるようにセッション変数を保存したい. ここにスクリプトがあります.
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
var uid = response.authResponse.userID; --> want to store this in a session variable
var accessToken = response.authResponse.accessToken; --> want to store this in a session variable
} else if (response.status === 'not_authorized') {
// the user is logged in to Facebook,
// but has not authenticated your app
} else {
alert("your not connected");
}
});
};