I’m trying to add google authentication, I added 'allauth.socialaccount.providers.google'
into installed apps and created SOCIALACCOUNT_PROVIDERS = { 'google': { 'SCOPE': [ 'profile', 'email', ], 'AUTH_PARAMS': { 'access_type': 'online', } }, }
but administration page doesnt show me this provider
no option to select google
Having followed all the required steps in the docs, obtained client id and secret key e and I also have refreshed, cleared cache, run makemigrations and migrate many times but the field won’t show ‘google’ as the option. Could you show me the way to solve this? Thank you!