Understand JWT Reserved Claims
masterJSON Web Tokens (JWT) are a type of JSON Web Signature (JWS) that use a standardized set of reserved claims. When working with JWTs in python-jose, you can include these claims to control token validity and identity:
'exp'(Expiration): Anintrepresenting the time after which the token is invalid.'nbf'(Not Before): Anintrepresenting the time before which the token is invalid.'iss'(Issuer): Astridentifying the principal that issued the JWT.'aud'(Audience): Astrorlist(str)identifying the intended recipient of the JWT.'iat'(Issued At): Anintrepresenting the time at which the JWT was issued.