December 2017
Intermediate to advanced
316 pages
6h 58m
English
All we discussed in the preceding section was circling around a JWT token. We are going to see here what it really looks like and how it is produced. JWT is a string that is generated after performing few a steps. They are as follows:
A header is a simple JSON object. It looks like the following code snippet in Go:
`{ "alg": "HS256", "typ": "JWT"}`
"alg" is a short form for the algorithm (HMAC with SHA-256) used for creating ...
Read now
Unlock full access