window.fbAsyncInit = function() {
FB.init({
appId : 'MyAppId',
channelURL : 'MyChannelUrl',
status : true,
cookie : true,
xfbml : true
});
FB.Event.subscribe('auth.statusChange', function(response)
{
console.log(response.status);
}
}
現在 Facebook にログインしている場合、console.log のみがトリガーされるのはなぜですか?