gpt4 book ai didi

Firebase authWithOAuthRedirect() 问题

转载 作者:行者123 更新时间:2023-12-04 10:37:36 25 4
gpt4 key购买 nike

我正在尝试更新我的 angularjs 应用程序以支持 Firebase 1.1(我一直坚持使用 Firebase 1.0.x)。
它弃用了 firebasesimplelogin,包括 Firebase 核心内部的身份验证。

我已经能够使用成功实现身份验证

authWithOAuthPopup("<provider>", function(error, authData) { ... });

它接受一个回调,它在 authData 中传递认证数据。 .

相反,我无法理解如何使用
authWithOAuthRedirect("<provider>", function(error) { ... });

Firebase Authentication docs page非常简洁...... :-(。这就是所说的:

或者 [而不是 authWithOAuthPopup],您可以提示用户使用完整的浏览器重定向登录,Firebase 将在您返回原始页面时自动恢复 session

当 Firebase - 重定向后 - 返回到我的页面时,如何获取 authData?

最佳答案

authData 可以通过直接在 ref 上注册一个监听器来获得(所以在调用 authWithOAuthRedirect 之前)。

ref.onAuth(function(authData) { 
...
}
ref.authWithOAuthRedirect("google", function(error) { ... });

https://www.firebase.com/docs/web/guide/user-auth.html#section-monitoring-authentication

关于Firebase authWithOAuthRedirect() 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26390027/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com