August 2019
Intermediate to advanced
256 pages
6h 43m
English
After clicking on the JWT tab, you should see a view similar to the following with two endpoint links:

The first link makes a request to an unsecured endpoint that will print the name from the JWT along with the upn claim if it exists.
However, since the web frontend is not providing a JWT for this request, the following will be displayed in the output section:
Hello[open] user=anonymous, upn=no-upn
Clicking on the second link accesses a secured version of the endpoint that has this code fragment:
public class JwtEndpoint { @Inject private JsonWebToken jwt; @Inject @Claim(standard = Claims.raw_token) private ClaimValue<String> ...
Read now
Unlock full access