4

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

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

4

1 回答 1

8

使用访问令牌,您可以使用userId发出people.get请求: me

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

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

{
    "kind": "plus#person",
    "id": "108189587050871927619",
    ...             ↑
}
于 2011-09-18T12:57:16.407 回答