2

下面的代码来自官方的 Facebook 开发者页面,适用于 FF 和 Safari,有时也适用于 Chrome,但更多情况下不适用于 Chrome。

在带有最新 Chrome 的 Snow Leopard 上,我单击登录按钮并在 FB 登录对话框打开和关闭时看到一点点闪烁。如果在我的 FB 帐户中删除并重新添加该应用程序,我会被要求提供权限,但该auth.authResponseChange事件似乎永远不会触发。

有谁知道这是否是一个错误,或者我可以在哪里找到不需要我手动轮询服务器的解决方案?

这是 Google+ 与 Facebook 的产物吗?!

<html>
<head></head>
<body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
  FB.init({
            appId       : $APP_ID$,                    // App ID from the app dashboard
            channelUrl  : $channelUrl$,              // Channel file for x-domain comms
            status      : true,                     // Check Facebook Login status
            cookie      : true,
            oauth       : true,
            xfbml       : true                       // Look for social plugins on the page
  });

  // Here we subscribe to the auth.authResponseChange JavaScript event. This event is fired
  // for any authentication related change, such as login, logout or session refresh. This means that
  // whenever someone who was previously logged out tries to log in again, the correct case below
  // will be handled.
  FB.Event.subscribe('auth.authResponseChange', function(response) {
    console.log('auth.authResponseChange fired');
    // Here we specify what we do with the response anytime this event occurs.
    if (response.status === 'connected') {
      // The response object is returned with a status field that lets the app know the current
      // login status of the person. In this case, we're handling the situation where they
      // have logged in to the app.
      testAPI();
    } else if (response.status === 'not_authorized') {
      // In this case, the person is logged into Facebook, but not into the app, so we call
      // FB.login() to prompt them to do so.
      // In real-life usage, you wouldn't want to immediately prompt someone to login
      // like this, for two reasons:
      // (1) JavaScript created popup windows are blocked by most browsers unless they
      // result from direct interaction from people using the app (such as a mouse click)
      // (2) it is a bad experience to be continually prompted to login upon page load.
      FB.login();
    } else {
      // In this case, the person is not logged into Facebook, so we call the login()
      // function to prompt them to do so. Note that at this stage there is no indication
      // of whether they are logged into the app. If they aren't then they'll see the Login
      // dialog right after they log in to Facebook.
      // The same caveats as above apply to the FB.login() call here.
      FB.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));

  // Here we run a very simple test of the Graph API after login is successful.
  // This testAPI() function is only called in those cases.
  function testAPI() {
    console.log('Welcome!  Fetching your information.... ');
    FB.api('/me', function(response) {
      console.log('Good to see you, ' + response.name + '.');
    });
  }
</script>

<!--
  Below we include the Login Button social plugin. This button uses the JavaScript SDK to
  present a graphical Login button that triggers the FB.login() function when clicked.

  Learn more about options for the login button plugin:
  /docs/reference/plugins/login/ -->

  <!-- scope='publish_stream,read_stream' -->
<fb:login-button  show-faces="true" width="200" max-rows="1"></fb:login-button>
</body>
</html>
4

1 回答 1

4

进入chrome设置——高级设置;在隐私下单击“内容设置”。查看是否选中了“阻止第 3 方 cookie 和站点数据”。

我遇到了类似的问题,在 chrome 中,js-sdk 会给我瞬时 fb 弹出窗口,但实际上似乎没有登录用户或识别正在登录/授权的用户。就我而言,我认为我已将问题缩小到该设置。

如果您启用了它,请尝试禁用它以查看是否可以为您修复它......虽然这实际上只是一个诊断步骤,但它不是一个解决方案,因为您仍然会有启用该设置的用户。

我正在尝试确定解决方法(如果有的话).. 可能涉及使用“用于 web”的 fb 登录流程(即不使用他们的 sdk,从而可能避免使用 3rd-party cookie)

这是我关于此问题版本的帖子... 如果禁用了 3rd-party cookie,facebook javascript/php SDK 可以相互“交谈”吗?facebook->getUser() 返回 0

于 2013-10-19T20:44:26.570 回答