Hi there. I have a website that uses both OIDC and JWT authentication. I thought of using this and the djangorestframework-simplejwt packages together to achieve this, but they don't seem to play well together. One of the authentication methods doesn't work, depending on how I order the authentication classes in settings.py.
Here are my REST framework settings in settings.py:
Hi there. I have a website that uses both OIDC and JWT authentication. I thought of using this and the
djangorestframework-simplejwt
packages together to achieve this, but they don't seem to play well together. One of the authentication methods doesn't work, depending on how I order the authentication classes insettings.py
.Here are my REST framework settings in
settings.py
:Is there any way to fix this?