Facebook连接 - Internet Explorer 7& 8 - 登录问题 - 登录后的空白屏幕 - fb_xd_fragment

时间:2011-12-13 16:45:44

标签: ruby-on-rails-3 facebook authentication facebooker2

我有一个使用facebook身份验证的应用。使用任何现代浏览器时,用户都可以登录。用ie 7& 8发生以下情况 -

用户单击登录按钮。 弹出facebook登录窗口 用户输入他们的详细信息并单击提交。 弹出窗口仍然打开,并使用此URL进入空白页面 - https://my-app.heroku.com/channel.html?fb_xd_fragment#?=LotsOfRandomUrlParamaters

我的代码看起来像这样 -

<div id="container"  class="facebook_tab" >
<div id="fb-root"></div>
<script type="text/javascript">              
    window.fbAsyncInit = function() {
                        FB.init({
          appId  : 'myappid',
          status : true, // check login status
          cookie : true, // enable cookies to allow the server to access the session
          xfbml  : true,  // parse XFBML
          oauth  : false,
          channelUrl : 'https://my-app.heroku.com/channel.html'
        });

          var e = document.createElement('script');
            e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
            e.async = true;
            document.getElementById('fb-root').appendChild(e);
          }());
</script>

这是一个使用这个宝石的导轨应用程序 - https://github.com/fionnbharra/facebooker2 - 但我不认为这是导致问题的原因。

用于生成登录按钮的rails代码如下所示 -

<%= fb_login(:text=>"Log in") do %>
  top.location.href='<%= APP_CONFIG[:my_app_url] %>';
<% end %>

任何人都知道这里发生了什么?

1 个答案:

答案 0 :(得分:0)

这是一个Facebook SDK问题(all.js)。尝试在Google中搜索fb_xd_fragment。有多种解决方案,有些是解决方案,有些则不是...... 您可以在https://developers.facebook.com/bugs

提交错误报告