ユーザーがすでにFBにログインしている場合は、FBアプリでユーザーに関する情報を自動的に取得したいと思います。Chromeでは、次のコードが完全に機能し、要求された情報を取得します。ただし、Internet ExplorerとFirefoxでは、次のコードはFB.login()を追加した場合にのみ機能します。window.fbAsyncInit関数に追加します。これにより、ページにアクセスするたびにポップアップが読み込まれますが、これは望ましくありません。アラートを使用してコードをテストすることにより、FB.Event.subscribe関数はIEやFFでも呼び出されていないが、Chromeでは正常に機能していることがわかりました。IEとFFでこれが異なる動作をするのはなぜですか?また、正しく機能させるにはどうすればよいですか?
(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));
// Init the SDK upon load
window.fbAsyncInit = function() {
FB.init({
appId : 'ID', // App ID
channelUrl : 'Channel Path', // Path to your Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
oauth : true,
frictionlessRequests: true
});
// listen for and handle auth.statusChange events
FB.Event.subscribe('auth.statusChange', function(response){
console.log(response);
if (response.authResponse) {
// user has auth'd your app and is logged into Facebook
FB.api('/me', function(me){
if (me.name) {
userID = me.id;
}
});
document.getElementById('auth-loggedout').style.display = 'none';
document.getElementById('auth-loggedin').style.display = 'block';
}else {
// user has not auth'd your app, or is not logged into Facebook
$('#auth-displayname').html('');
document.getElementById('auth-loggedout').style.display = 'block';
document.getElementById('auth-loggedin').style.display = 'none';
}
});
}