我正在嘗試使用Open Graph API實現「使用Facebook登錄」。到目前爲止,這適用於FF,Chrome,Safari,但不適用於IE。在IE9上測試。Facebook API,使用Facebook登錄不能在IE瀏覽器上工作
在IE上,我得到Facebook對話框來登錄。我可以成功登錄到Facebook,但沒有任何反應。在其他瀏覽器上,頁面重定向並將fb用戶數據存儲到數據庫。
我在不同的場合嘗試了兩種FB文檔類型,沒有運氣。
xmlns:fb="http://ogp.me/ns/fb#"
xmlns:fb="http://www.facebook.com/2008/fbml"
編輯:我刪除了FB.api的東西只是爲了包括一個警報框進行測試。除IE之外的所有東西仍然可用。
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $AppID; ?>',
channelUrl : '//www.mysite.net/channel.php', // Channel File
oauth : true,
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
function fb_login(){
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
//console.log(response); // dump complete info
access_token = response.authResponse.accessToken; //get access token
user_id = response.authResponse.userID; //get FB UID
FB.api('/me', function(response) {
alert(response.id);
});
} else {
//user hit cancel button
console.log('User cancelled login or did not fully authorize.');
}
}, {
scope: 'email,publish_actions'
}
);
}
// 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>
重要:請指定您正在測試的IE版本。 – Spudley
感謝您的提醒......使用IE9。 – user1373779