gpt4 book ai didi

python - 谷歌加: get 'me'

转载 作者:行者123 更新时间:2023-12-01 05:03:22 24 4
gpt4 key购买 nike

我一直在尝试找到任何明确的文档来解释获取经过身份验证和授权的用户的个人资料数据(包括电子邮件)的流程(从我拥有他的 auth_token 开始)。我在谷歌的开发网站上找不到它。

是否有一个简单的网址场景,我需要使用身份验证 token 调用来获取个人资料信息(包括电子邮件)?

我不关心身份验证/授权部分——我已经过去了。

我正在使用 python,但这并不重要,因为我不是在寻找任何特定的框架。

最佳答案

您想要创建一个 people.get使用授予 email scope 的 access_token 进行请求.

您可以try a live example .

GET /plus/v1/people/me
Host: https://www.googleapis.com
Authorization: Bearer ya29.cABDhy4M21HMayoAAABH5qlNLgr...

HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8
{
"kind": "plus#person",
"id": "114233674199568482864",
"displayName": "Abraham Williams",
"emails": [
{
"value": "abraham@example.com",
"type": "account"
}
],
...
}

关于python - 谷歌加: get 'me' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25572708/

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