This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Social Authentication and ContentTypes #43
Comments
How did you get that error? I cannot reproduce it. What is your output of |
pip freeze:
I'm on python 3.6.8 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
If you follow the doc about socialauth you will end up with a non working setup, at least when enabling google OAuth2
The solution looks obvious: add contenttypes to INSTALLED_APPS. Which you could do in two forms:
And you will be greeted with...
Only then will you think "hey, it's not a plugin, but maybe the right place to put it is Site.get_installed_apps, like:
yield 'django.contrib.contenttypes'
.Now it works.
So, that page might explain that contenttypes is needed, and how to add it?
The text was updated successfully, but these errors were encountered: