[Django]-Django ImportError: Module "social_core.backends.google" does not define a "GoogleOpenId" attribute/class

3👍

Thanks to the comment below, which explains python-social-auth deprecation, I’ve solved the issue by downgrading social-auth-core package from version 4.0.3 to 3.3.3:

0👍

GoogleOpenID is no longer in use, so it was removed from python-social-auth. But they must have forgotten to update the docs.

https://github.com/python-social-auth/social-core/issues/472

https://github.com/python-social-auth/social-docs/issues/65

Leave a comment