无法使Google App Engine OAuth2示例(适用于Python)工作 - 400错误:redirect_uri_mismatch

时间:2014-10-28 15:49:12

标签: python google-app-engine oauth-2.0 google-api sample

我需要使用OAuth2,所以我希望通过App Engine和Python进行开发,因为Google提供的示例代码应该可以简化这个过程:

https://developers.google.com/api-client-library/python/guide/aaa_oauth

https://code.google.com/p/google-api-python-client/downloads/list

应该很简单;只需下载文件,在app.yaml中设置应用程序名称,在client_secrets.json中设置id / secret。然后通过Google App Engine Launcher运行/上传。

但是,我得到错误400: 错误:redirect_uri_mismatch。 请求中的重定向URI: {localhost或appspot.com} / oauth2callback与注册的重定向URI不匹配。

请求详细信息

scope=https://www.googleapis.com/auth/plus.me
response_type=code
access_type=offline
redirect_uri={local/appspot}/oauth2callback
state={local/appspot}/:gP-pigwbwB3IBwMjafPlPToxNDE0NTA4ODYy
client_id={id-stuff}.apps.googleusercontent.com

我怀疑问题在于代码(因为它是一个工作样本),但它还能做什么,我缺少什么?

1 个答案:

答案 0 :(得分:2)

转到API控制台:https://code.google.com/apis/console/

在您的项目中,检查API访问设置并确保该URL是重定向URI之一。如果没有,请添加它。