Learn how to use JSON Web Token (JWT) to secure your Web and/or Mobile Application! Github resource explaining how tokens work - JSON Web Tokens (JWTs) make it easy to send read-only signed “claims” between services. Claims are any bits of data that you want someone else to be able to read and/or verify but not alter.
What does a JWT Look Like? There is example provided, with explanation what is in Header, Payload and Signature. Good descriptions of Claims on server side and further reading links are provided.
And authors added examples and tests and also FAQ with detailed answers and further reading section.
[Read More]