View on GitHub

reading-notes

My learning journal for Code Fellows

Authentication and Production Server

JSON Web Tokens

JSON Web Tokens, or JWT is a secure way to transmit information between two parties that is digitally signed.

Authorization is the most common scenario for using JWT. Once a user is logged in, they will send all requests with that JWT and will get to see different information based on the authorization of that token.

Because they are signed, JWT are a good way to transmit information between parties due to the fact that that signature guarantees both parties are who they say they are.

Parts of a JWT: Header, Payload, Signature

Production Server

The servers we have been running are not yet cleared for a production level.

Things I want to know more about: