I am using the django-saml2-auth with JWT to integrating to django-restframework. In my project I am using too djangorestframework-simplejwt. However, the jwt token generated after saml authentication in Azure AD is not validated in my API.
When I try to access some endpoint of my API:
{
"status": "error",
"code": 401,
"data": null,
"message": "Given token not valid for any token type"
}
Hello,
I am using the django-saml2-auth with JWT to integrating to django-restframework. In my project I am using too djangorestframework-simplejwt. However, the jwt token generated after saml authentication in Azure AD is not validated in my API.
When I try to access some endpoint of my API:
Some points of my settings:
I'm glad for any help.