如何从我的Gmail帐户访问信息,例如photo,tokenId,名字,姓氏和Gmail ID?
我搜索了很多,但没有正确答案。
答案 0 :(得分:0)
此api https://www.googleapis.com/plus/v1/people/me返回
{
"gender": "male",
"id": "234343028403284",
"displayName": "xxx",
"name": {
"familyName": "foo",
"givenName": "bar"
},
"url": "https://plus.google.com/34324234324324",
"image": {
"url": "https://lh3.googleusercontent.com/dlkfjdsfds/djfldsf"
}
...
}
在您的应用程序可以访问用户的Google帐户中的数据之前,该应用程序必须请求用户授权。
有关oauth的信息,请参阅https://developers.google.com/+/api/oauth。
尝试:https://developers.google.com/oauthplayground/将帮助您了解oauth流程:
第1步:选择Google+,Authorize apis
第2步:Exchange authorization code for tokens
第3步:
输入https://www.googleapis.com/plus/v1/people/me Send the request