Google plus 的 access_token 集成

发布于 2024-12-05 02:44:17 字数 327 浏览 1 评论 0原文

我跟着: http://developers.google.com/+/api/oauth 和:
http://developers.google.com/+/api/latest/people /get#examples

获取访问令牌后我不明白如何获取用户的ID?如何使用它来获取用户的数据?

I followed :
http://developers.google.com/+/api/oauth
and :
http://developers.google.com/+/api/latest/people/get#examples

After I acquired the access token I didn't understand how to get the user's ID? How do I use it to get the user's data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

守不住的情 2024-12-12 02:44:17

借助访问令牌,您可以使用 userId< 发出 people.get 请求/em> me

GET https://www.googleapis.com/plus/v1/people/me?access_token=1234567890
                                              ↑

返回的 person 资源 具有 Id 属性包含用户的 userId:

{
    "kind": "plus#person",
    "id": "108189587050871927619",
    ...             ↑
}

With the access token, you can make a people.get request with the userId me:

GET https://www.googleapis.com/plus/v1/people/me?access_token=1234567890
                                              ↑

The returned person resource has an Id property that contains the userId of the user:

{
    "kind": "plus#person",
    "id": "108189587050871927619",
    ...             ↑
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文