I\'m testing an implementation of JWT Token based security based off the following article. I have successfully received a token from the test server. I can\'t figure out ho
I had the same issue in Flask and after trying the first 2 solutions which are the same (Authorization: Bearer ), and getting this:
{
"description": "Unsupported authorization type",
"error": "Invalid JWT header",
"status_code": 401
}
I managed to finally solve it by using:
Authorization: jwt
Thought it might save some time to people who encounter the same thing.