7

我使用 FB JDK 在我的网站上启用了 FB 登录。当我使用它时,它完美地工作:对话框窗口打开,我授权,并且authResponse正如预期的那样。当另一个用户使用它时(尚未授权该应用程序,但已登录到 FB),登录对话框会出现一秒钟,然后立即消失,并且响应对象具有 status not_authorized。关于为什么对话框可能不要求用户授权的任何想法?

在我的布局(Haml)中:

%body
  #fb-root
  :javascript
    window.fbAsyncInit = function() {
      FB._https = false;
      FB.init({
        appId      : <App ID>
        status     : true,
        cookie     : true,
        oauth      : true,
        xfbml      : true
      });
      FB.getLoginStatus(function(response) {
        if(window.reportFBstatus) {
          reportFBstatus(response);
        }
      }, true);
    };
    // Load the SDK
    (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));

登录链接:

%a{href: '#', onclick: 'FB.login(window.reportFBstatus, {scope: "user_about_me"})'}

在咖啡脚本中:

window.reportFBstatus = (response) ->
  $.ajaxSetup({
    headers:
      'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content')
  })
  console.log response # always shows status=not_authorized for other users
  if response.status is 'connected'
    auth = response.authResponse
    $.post('/login', {fb_id: auth.userID, fb_token: auth.accessToken}, (data) ->
      window.currentUser = data
    )
4

1 回答 1

15

对我有用的解决方案实际上是一个愚蠢的解决方案——我忘记在 Facebook 上的开发者应用程序控制台中将应用程序从沙盒模式更改为实时模式(单击左侧的应用程序)。或者,我可以添加我希望能够以开发人员或测试人员身份登录的人员。

希望对其他人有所帮助!

于 2013-07-08T16:28:32.697 回答