如果他们已经登录到 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';
}
});
}