如何获取我的Gmail帐户的个人资料照片?

时间:2013-02-25 05:34:07

标签: ios gmail google-api

如何从我的Gmail帐户访问信息,例如photo,tokenId,名字,姓氏和Gmail ID?

我搜索了很多,但没有正确答案。

1 个答案:

答案 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流程: