Google django-social-auth 登录错误

Google Login error with django-social-auth

我使用 django-social-auth 创建了一个用于 google 登录的 django 项目。

我按照文档并使用 "OAuth 2.0" 在 google 开发者控制台中创建了一个应用程序,并添加了 API 的

Gmail API, Google+ API,  Google+ Domains API and Google+ Hangouts API

在凭据中,我已将 AUTHORIZED REDIRECT URIS 设置到我的生产服务器 url "mysite.com"。

我用 "CLIENT ID" 和 "CLIENT SECRET" 配置了 django 设置。此设置在我的本地服务器上完美运行,创建了用户并为用户关联了电子邮件。

但是当我移动到生产服务器时,出现错误

"400. That’s an error. OpenID auth request contains an unregistered domain: mysite.com". 

有没有其他人遇到类似的问题?

我也遇到了类似的问题,我修复了如下:

  1. 如果您的 google 登录名 URL 是 /login/google/,请将其更改为 /login/google-oauth2/
  2. 在您的 google 应用设置中添加以下重定向 URI

http://<your domain>/<social-auth-prefix-if-any>/complete/google-oauth2/ http://<your domain>/<social-auth-prefix-if-any>/associate/complete/google-oauth2/

希望对您有所帮助。