I can't validate the token when I want to access an endpoint of my api

Through the front I login the user and get the token but when I want to use it in my endpoint with Authorization Bearer {token} it always sends me this as a response:
{
“detail”: “Given token not valid for any token type”,
“code”: “token_not_valid”,
“messages”: [
{
“token_class”: “accessToken”,
“token_type”: “access”,
“message”: “Token is invalid or expired”
}
]
}


Hi there @elian welcome to the community!

Are you able to decode an access token you’re attempting to use at jwt.io? Feel free to share here with any sensitive info redacted.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.