Facebook JavaScript API-在Chrome中登录失败

Facebook JavaScript API-在Chrome中登录失败,javascript,facebook,google-chrome,facebook-javascript-sdk,Javascript,Facebook,Google Chrome,Facebook Javascript Sdk,下面的代码来自Facebook的官方开发者页面,可以在FF和Safari中使用,有时也可以在Chrome中使用,但更多情况下不能在Chrome中使用 在使用最新Chrome浏览器的雪豹上,我单击登录按钮,看到FB登录对话框打开和关闭时有点闪烁。如果在我的FB帐户中,我删除并重新添加应用程序,我会被要求获得权限,但auth.authResponseChange事件似乎从未触发 是否有人知道这是一个bug,或者我在哪里可以找到一个不需要我手动轮询服务器的解决方案 这是Google+和Facebook

下面的代码来自Facebook的官方开发者页面,可以在FF和Safari中使用,有时也可以在Chrome中使用,但更多情况下不能在Chrome中使用

在使用最新Chrome浏览器的雪豹上,我单击登录按钮,看到FB登录对话框打开和关闭时有点闪烁。如果在我的FB帐户中,我删除并重新添加应用程序,我会被要求获得权限,但auth.authResponseChange事件似乎从未触发

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

这是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>

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

我遇到了一个类似的问题,在chrome中js sdk会给我一个短暂的fb弹出窗口,但实际上似乎没有让用户登录或识别正在登录/授权的用户。在我的情况下,我想我已经把我的问题缩小到了这个范围

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

我正在努力确定解决办法,如果有的话。。可能涉及对web ie使用fb登录流而不使用sdk,从而可能避免使用第三方cookie


这是我对这个问题的看法

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

我遇到了一个类似的问题,在chrome中js sdk会给我一个短暂的fb弹出窗口,但实际上似乎没有让用户登录或识别正在登录/授权的用户。在我的情况下,我想我已经把我的问题缩小到了这个范围

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

我正在努力确定解决办法,如果有的话。。可能涉及对web ie使用fb登录流而不使用sdk,从而可能避免使用第三方cookie


这是我对这个问题的看法

Windows XP Chrome报告FB JS SDK代码中关于http/https协议不匹配的错误-将FB“connect”URI从“//”更改为“https”没有任何区别。Windows XP Chrome报告FB JS SDK代码中关于http/https协议不匹配的错误-将FB“connect”URI从“/”更改为“https”没有任何区别。我的解决方法是为我自己的按钮提供onClick事件触发FB.login。我怀疑如果所有东西都托管在hTTPS服务器上,一切都会好起来的,从10月1日起,这显然是FB的一项要求。我的工作是提供我自己的带有onClick事件触发FB.login的按钮。我怀疑,如果所有东西都托管在hTTPS服务器上,一切都会好起来的。从10月1日起,hTTPS服务器显然是FB的一项要求。