AngularFire Google OAuth 未检索用户的电子邮件
AngularFire Google OAuth not retrieving the user's email
我想使用 AngularFire 从 Google OAuth 获取电子邮件地址,但在弹出窗口中,它不要求电子邮件权限。
的代码
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
我想使用 AngularFire 从 Google OAuth 获取电子邮件地址,但在弹出窗口中,它不要求电子邮件权限。
的代码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