FBのログインも使えるログインシステムを作りたい。そのため、自分のページで FB オブジェクトと SDK をセットアップし、auth.authResponseChange
イベントを購読して、ログに記録されている、ログに記録されていない、または承認されていない場合に実行する匿名関数を追加しました。
ログインすると、正常に動作します。ログインしていない、または許可されていない場合、何もしません。の前に console.log() を置いたので、匿名関数にも入らないと思いますが、if
何もしません。
これが私のコードです:
// Facebook stuff
window.fbAsyncInit = function()
{
FB.init({
appId : 'my id blabla', // App ID
channelUrl : 'my channel.html bla bla', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Event.subscribe('auth.authResponseChange', function(response)
{
console.log("Running function");
if(response.status === "connected")
{
console.log("Connected and authorized");
}
else if (response.status === 'not_authorized')
{
console.log("Not authorized");
}
else
{
console.log("Not connected");
}
});
};
// Load the SDK asynchronously
(function(d)
{
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));