Answers for "django allauth authentication"

5

django allauth

pip install django-allauth
Posted by: Guest on February-07-2020
0

allauth django

SOCIALACCOUNT_PROVIDERS = {
    'google': {
        # For each OAuth based provider, either add a ``SocialApp``
        # (``socialaccount`` app) containing the required client
        # credentials, or list them here:
        'APP': {
            'client_id': '123',
            'secret': '456',
            'key': ''
        }
    }
}
Posted by: Guest on July-15-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language