带有Facebook身份验证的Firebase自定义域

时间:2016-01-16 21:57:56

标签: firebase firebase-authentication

Facebook身份验证无法在firebase上使用自定义域。

        fbRef = new Firebase("https://my-app.firebaseio.com/")

        facebookCallback = (error, authData) ->
            if error then console.log 'Login Failed!', error
            else console.log 'Authenticated successfully with payload:', authData

        fbRef.authWithOAuthRedirect 'facebook', facebookCallback, {scope: 'email'}

我使用firebase设置了Facebook身份验证和自定义域名(顺便提一下,这是非常好的设置体验!)但现在身份验证可以从localhost:8080my-app.firebaseapp.com开始,但它确实不是使用www.my-custom-domain.com工作。

有一些重定向正在进行,并且url会附加https://www.my-custom-domain.com#?&__firebase_request_key=........,然后哈希查询参数消失,但我没有登录。

我在文档中遗漏了什么?

0 个答案:

没有答案