gpt4 book ai didi

python - 为什么我从 App Engine 获得对 Google API 调用的 invalid_grant?

转载 作者:太空宇宙 更新时间:2023-11-04 01:30:44 25 4
gpt4 key购买 nike

我正在尝试从 App Engine 访问 Google Prediction API 并按照此处的说明操作 -- https://developers.google.com/appengine/articles/prediction_service_accounts

在 App Engine 上部署时效果很好。然而,相同的代码在本地开发服务器上失败并出现以下错误。

credentials = AppAssertionCredentials(
scope='https://www.googleapis.com/auth/prediction')
http = credentials.authorize(httplib2.Http(memcache))
service = build("prediction", "v1.5", http=http, developerKey=api_key)

ERROR 2012-12-28 03:48:53,084 client.py:461] Failed to retrieve access token: {
"error" : "invalid_grant"
}
ERROR 2012-12-28 03:48:53,115 cgi.py:121] Traceback (most recent call last):
File "/Users/gkedia/git/thirdgaze/main.py", line 83, in <module>
service = build('prediction', 'v1.5', http=http, developerKey=api_key)
File "/Users/gkedia/git/thirdgaze/apiclient/discovery.py", line 175, in build
resp, content = http.request(requested_url)
File "/Users/gkedia/git/thirdgaze/oauth2client/client.py", line 503, in new_request
self._refresh(request_orig)
File "/Users/gkedia/git/thirdgaze/oauth2client/client.py", line 412, in _refresh
self._do_refresh_request(http_request)
File "/Users/gkedia/git/thirdgaze/oauth2client/client.py", line 472, in _do_refresh_request
raise AccessTokenRefreshError(error_msg)
AccessTokenRefreshError: invalid_grant

我注意到的一件事是对于完全相同的参数,key_name, signature = app_identity.sign_blob(base_str) 在生产环境和本地机器上返回不同的签名。

我的电脑时间已正确同步,offline_access 参数似乎尚未涉及。

最佳答案

app_identity 和更普遍的服务帐户将无法在 dev_appserver 上运行,您将不得不回退到常规 oauth2 webserver flow以便在本地测试时获得与常规 Google 帐户关联的访问 token 。

类似于:

flow = OAuth2WebServerFlow(client_id='your_client_id',
client_secret='your_client_secret',
scope='https://www.googleapis.com/auth/prediction',
redirect_uri='http://localhost:8080/oauth2callback')
self.redirect(flow.step1_get_authorize_url())

然后在 /oauth2callback 处理程序中:

credentials = flow.step2_exchange(self.request.get('code'))
http = credentials.authorize(httplib2.Http(memcache))
service = build("prediction", "v1.5", http=http, developerKey=api_key)

您可以轻松检测您是在 dev_appserver 上运行还是在生产环境中使用 SERVER_SOFTWARE environment variable .

关于python - 为什么我从 App Engine 获得对 Google API 调用的 invalid_grant?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14064630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com