javascript SDK を使用して現在のユーザーのログイン ステータスを取得しようとしていますが、次のエラーが表示されます。
FB.getLoginStatus() は、FB.init() を呼び出す前に呼び出されます
これが私のコードです:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '000000000000000000', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
console.log(FB.getLoginStatus); //THIS DOESN'T WORK!!
};
// 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));
</script>
何か案は?