我跟着:
http: //developers.google.com/+/api/oauth
和:http:
//developers.google.com/+/api/latest/people/get#examples
获取访问令牌后,我不明白如何获取用户 ID?如何使用它来获取用户的数据?
我跟着:
http: //developers.google.com/+/api/oauth
和:http:
//developers.google.com/+/api/latest/people/get#examples
获取访问令牌后,我不明白如何获取用户 ID?如何使用它来获取用户的数据?
使用访问令牌,您可以使用userId发出people.get请求: me
GET https://www.googleapis.com/plus/v1/people/me?access_token=1234567890
↑
返回的person 资源有一个Id
包含用户的 userId 的属性:
{
"kind": "plus#person",
"id": "108189587050871927619",
... ↑
}