gpt4 book ai didi

javascript - AngularFire Google OAuth 不检索用户的电子邮件

转载 作者:行者123 更新时间:2023-11-29 19:26:27 25 4
gpt4 key购买 nike

我想使用 AngularFire 从 Google OAuth 获取电子邮件地址,但在弹出窗口中,它没有请求电子邮件权限。

这是来自 Firebase Google auth doc 的代码

var ref = new Firebase("https://<your-firebase>.firebaseio.com");
ref.authWithOAuthPopup("google", function(error, authData) { /* Your Code */ }, {
scope: "email"
});

它在我的 Angular 应用程序中工作,但我怎样才能修复我的 Angular 代码来做同样的事情?

var ref = new Firebase("https://<your-firebase>.firebaseio.com");
var auth = $firebaseAuth(ref);
auth.$authWithOAuthPopup("google").then(function(authData) {
/* Code */
}).catch(function(error) {
console.error("Authentication failed:", error);
});

Link to the same problem with answer ,但我没有得到答案以及如何解决它。

最佳答案

您是否尝试传递选项?

var ref = new Firebase("https://<your-firebase>.firebaseio.com");
var auth = $firebaseAuth(ref);
auth.$authWithOAuthPopup("google", { scope: 'email' }).then(function(authData) {
/* Code */
}).catch(function(error) {
console.error("Authentication failed:", error);
});

正如 Kato 所指出的,文档也提供了该信息:link

关于javascript - AngularFire Google OAuth 不检索用户的电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30520067/

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