Python Django: Accepting JWT
Accepting JWT Tokens from IndustryApps
Configuring your Third-Party Application to accept JWT tokens acquired from IndustryApps
Handling multiple JWT issuers with Django, Python
INSTALLED_APPS = [
...
# The following apps are required:
'django.contrib.auth',
'django.contrib.messages',
'django.contrib.sites',
'allauth',
'allauth.account',
'allauth.socialaccount',
# if allauth is already installed, then keycloak as a provider should be added
'allauth.socialaccount.providers.keycloak',
]Last updated