我想使用服务器端与Google+neneneba API的通信来检索当前用户的配置文件信息。我根据python的谷歌示例登录用户:
credentials = client.credentials_from_clientsecrets_and_code(
CLIENT_SECRET_FILE,
['https://www.googleapis.com/auth/drive.appdata', 'profile', 'email'],
code)
然后我调用Google+API:
http_auth = credentials.authorize(httplib2.Http())
service = build('plus', 'v1', http = http_auth)
google_request = service.people().list(userId = 'me', collection = 'visible')
result = google_request.execute()
这导致以下错误:
HttpAccessTokenRefreshError: invalid_grant
有人知道我能做些什么吗?
我使用正确的方法people().get()
而不是people().list()
解决了这个问题
起初我想删除这个问题,因为这个主题看起来很傻,但我从Github上的代码示例中复制了错误的API调用,因此我可以想象其他人也会遇到这个问题。