jwt Authentication

import jwt

token = "<token value>"

decoded = jwt.decode(token, options={"verify_signature": False}) 
# works in PyJWT >= v2.0

print (decoded)

Last updated

Was this helpful?