Skip to content

Latest commit

 

History

History

jwtAuth

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

JWT

JWT is useful for authorizing resources or content of particular applications. Once the user is logged in, each subsequent request will include the JWT access token, allowing the user to access routes, services, and resources that are permitted with that token.

Read JWT Introduction for more information.

Read a detailed article on JWT authentication and its working.

Generating secret keys

  • For generating tokens, we need a separate secret key for both tokens (or the same key can also be used for both tokens).
  • You can generate it with HSA 256 OR RS256 encryption. It should at least be 32 characters long, but longer is better.
  • Follow How to generate secret keys for JWT? to create secret keys

Example

Find a working example of JWT-reusable at JWT-Example.