Question 4 of 10Pro Only
How does a JWT work and what is its structure?
Sample answer preview
A JWT, JSON Web Token, is an open standard for securely transmitting information between parties. It consists of three parts separated by dots. The first part is the header. It contains the token type, always JWT, and the signing algorithm used, like HS256 or RS256.
headerpayloadsignatureclaimsBase64URLHS256