-
Header – {“typ”, “alg”}
-
typ – the type of jwt – value: JWT
-
alg – the used algorithm to sign JWT – value: HS256
-
-
Body – {“token_id”, “iss”, “exp”}
-
token_id – the token identifier
-
iss – the issuer of the JWT – value cannot be null
-
exp - represents the expiration time of the jwt and it is expressed as a Unix timestamp (the number of seconds since January 1, 1970, 00:00:00 UTC).
-
Example (JWT)
In the http request’s header add Authorization {JWT}