2

我正在尝试使用 Open Graph API 实现“使用 Facebook 登录”。到目前为止,这适用于 FF、Chrome、Safari,但不适用于 IE。在 IE9 上测试。

在 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>
4

1 回答 1

1

尝试删除/注释掉代码的 console.log() 区域,我知道这很疯狂,但是上次我在 IE 中尝试这些区域时,他们抱怨无法调用 log on undefined ......我希望 IE 能赶上次。

如果有的话,试一试,绝对值得一试潜在的简单修复。请相信我知道这听起来很傻,但它过去一直是我 IE 错误的根源!

于 2012-05-07T05:26:08.083 回答