我已经为我的 facebook 页面标签应用程序实现了一个简单的 facebook 登录脚本。它假设向用户验证应用程序。它在所有浏览器中都可以正常工作,但 IE(我有 IE10 用于测试兼容性)。在 IE 中,它会按预期带来身份验证弹出窗口,用户可以很好地对其进行身份验证,但是它不会像在其他浏览器中那样打开主应用程序页面 (liked.php),而是不断重新加载自身 (login.php)。我知道在我们这个时代没有人应该使用 IE,但有些人确实需要它,我需要它来为他们工作:) 谢谢!代码在这里:
<body>
<div id="fb-root"></div>
<fb:login-button size="medium" onlogin="login()" scope="email, user_birthday">Logga in med Facebook</fb:login-button>
<script>
// Additional JS functions here
window.fbAsyncInit = function() {
FB.init({
appId : 'myid', // App ID
channelUrl : '//www.mydomain.com/channel.html', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional init code here
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
// connected
} else if (response.status === 'not_authorized') {
// not_authorized
//login();
} else {
// not_logged_in
//login();
}
});
};
// 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));
function login() {
FB.login(function(response) {
if (response.authResponse) {
// connected
window.location = 'liked.php';
} else {
// cancelled
}
});
}
</script>
</body>