1

我正在尝试使用 Firebase 身份验证提供程序https://www.firebase.com/docs/web/guide/user-auth.html#section-providers连接社交媒体身份验证,但我得到的只是一个空白来自 Facebook 和 Twitter 的屏幕。

我已经在本地进行了测试,甚至使网站上线,但只是一个空白屏幕。

这是我的 Facebook 验证码

authRef.authWithOAuthPopup('facebook', function(error, authData) { 
  console.log(authData);
}, {
  remember: 'sessionOnly',
  scope: 'email,public_profile'
});

这是我的推特片段:

authRef.authWithOAuthPopup('twitter', function(error, authData) {
  if (authData) {
    // the access token will allow us to make Open Graph API calls
    console.log(authData);
  }

  console.log(error);
});

请注意,我使用的是最新版本的 Firebase v2.0.5,SimpleLogin 是核心的一部分,而不是单独的库。

    New Firebase instance:
var authRef = new Firebase(myfirebase);

点击事件:

   $('social-auth').on('click',function(e) {
        e.preventDefault();
        var socialSite = this.getAttribute('data-social-site');

    If(socialSite === 'facebook') {
        // this where the Facebook OAuthPopUp is called.
        facebook();
    }
}
4

1 回答 1

0

好的,我认为 v2.0.4 中一定有一个错误,因为我已经升级到 v2.0.5,现在来自 Facebook、Twitter 和 Google Plus 的身份验证现在可以正常工作了。

于 2014-11-30T12:39:10.340 回答