Givenname and Familyname claims are missing in firebase idtoken(Firebase idToken中缺少Givenname和Familyname声明)
本文介绍了Firebase idToken中缺少Givenname和Familyname声明的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用Firebase为我们的Web应用程序实现Google登录。 下面是我为获取idToken所做的工作:
const google_provider = new GoogleAuthProvider();
google_provider.addScope("openid");
google_provider.addScope("profile");
google_provider.addScope("email");
signInWithPopup(auth, google_provider).then((result) =>
result.user.getIdToken());
虽然我已经添加了配置文件作用域,但我仍然无法获得idtoken
中的givenname
和familyname
(email
、picture
和name
是可用的)
(我尝试直接使用Google登录,在那里我可以看到所有个人资料声明)
我在这里错过了什么?我做错了什么吗?
推荐答案
由getIdToken()
返回的Firebase ID令牌不包含您正在查找的用户的谷歌帐户信息(预期名称、个人资料图像等)。您应该使用从登录结果中检索到的访问代码向Google API发出获取它的请求。
signInWithPopup(auth, provider)
.then(async (result) => {
// This gives you a Google Access Token. You can use it to access the Google API.
const credential = GoogleAuthProvider.credentialFromResult(result);
const token = credential.accessToken;
const response = await fetch('https://www.googleapis.com/oauth2/v1/userinfo', {
headers: {
Authorization: `Bearer ${token}`
}
})
const data = await response.json();
console.log(data);
})
这篇关于Firebase idToken中缺少Givenname和Familyname声明的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:Firebase idToken中缺少Givenname和Familyname声明
基础教程推荐
猜你喜欢
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01