I created an oauth provider using django-oauth-toolkit .
Now I want to allow users of my client application to log in through this provider.
I understand that django-allauth is the perfect tool for this.
I see that django-allauth has a special folder for each provider, and there are special files in this folder called provider.py . For example, this is the folder for the github provider.
Should I create something similar to this folder specifically for my custom provider? Or is there an easier / better way to do this?
python django oauth django-allauth
Brachamul
source share