用于检索关注者数量和谷歌加配置文件视图的python代码

时间:2016-06-27 10:52:26

标签: python google-api-client google-api-python-client

我是python的新手,我们正在开发一个项目,需要通过api从谷歌+帐户收集信息。请使用以下代码,但收到错误。

from apiclient.discovery import build
service = build('plus', 'v1', developerKey='Client Secret')
people_service = service.people()
people_document = people_service.get(userId='me').execute()
print 'Display name: %s' % people_document.get('displayName')

我得到的错误是:googleapiclient.errors.HttpError:https://www.googleapis.com/plus/v1/people/me ?alt = json& key = XXXxx返回"错误请求"取代。 任何人都可以建议我应该是服务对象中的developerkey吗?

0 个答案:

没有答案