How do I use JWT token authentication for API requests with rest_framework_simplejwt without needing user identification?
I have an API endpoint for my django application where I am allowing anyone with the JWT access token (valid for 15 mins) to use the API. But it doesn’t work when I do a GET request with the access token. Authentication responds with "Token contained no recognizable user identification"
. Since anyone should be allowed to access the API with the token, I don’t need to check if it’s valid for any particular user.