So I've been trying to build a Django project that handles authentication centrally on a standalone basis using django-rest-framework-simplejwt. And other Django Rest Framework projects that use this for authentication. All projects will have their own databases.
I am not quite sure what goes into the database section in settings.py of both the auth project and other projects. The documentation mentions something about JWTTokenUserAuthentication backend as an experimental feature and is quite inadequate.
I have done some research and found I may have to use a remote user login or set up a proxy server. Can someone point me in the right direction?
So I've been trying to build a Django project that handles authentication centrally on a standalone basis using
django-rest-framework-simplejwt. And other Django Rest Framework projects that use this for authentication. All projects will have their own databases.I am not quite sure what goes into the database section in settings.py of both the auth project and other projects. The documentation mentions something about
JWTTokenUserAuthenticationbackend as an experimental feature and is quite inadequate.I have done some research and found I may have to use a remote user login or set up a proxy server. Can someone point me in the right direction?