我应该使用哪个 google oauth playground API 来获取包含名称、用户照片和电子邮件的令牌?
Which google oauth playground API should I use to obtain a token with the name, user photo and email?
我最近从 google 找到了这个工具 https://developers.google.com/oauthplayground/
好吧,我目前正在为带有节点和 passpor.js 的 api 进行身份验证实践,我想知道我应该选择这些 api 中的哪一个来获取令牌与用户,电子邮件和个人资料照片,在教程中我看到使用https://www.googleapis.com/auth/userinfo.profile,所以我不知道它是否已贬值或已被新的取代,或者它是否可以用于生产。
此外,如果您能多解释一下这个工具是什么,我将不胜感激。
在 OAuth Playground 上,您可以“输入您自己的范围”。
复制并粘贴 https://www.googleapis.com/auth/userinfo.profile
并单击授权 API。
然后兑换访问令牌。
之后你可以调用 https://www.googleapis.com/oauth2/v2/userinfo
它应该 return 你正在寻找的数据。
我最近从 google 找到了这个工具 https://developers.google.com/oauthplayground/ 好吧,我目前正在为带有节点和 passpor.js 的 api 进行身份验证实践,我想知道我应该选择这些 api 中的哪一个来获取令牌与用户,电子邮件和个人资料照片,在教程中我看到使用https://www.googleapis.com/auth/userinfo.profile,所以我不知道它是否已贬值或已被新的取代,或者它是否可以用于生产。
此外,如果您能多解释一下这个工具是什么,我将不胜感激。
在 OAuth Playground 上,您可以“输入您自己的范围”。
复制并粘贴 https://www.googleapis.com/auth/userinfo.profile
并单击授权 API。
然后兑换访问令牌。
之后你可以调用 https://www.googleapis.com/oauth2/v2/userinfo
它应该 return 你正在寻找的数据。