plugins/auth-jwt/README.md
A JSON Web Token (JWT) authentication plugin that supports token generation, signing, and automatic header management.
This plugin provides JWT authentication support for API requests. JWT is a compact, URL-safe means of representing claims between two parties, commonly used for authentication and information exchange in modern web applications and APIs.
JWT authentication involves creating a signed token containing claims about the user or
application. The token is sent in the Authorization header:
Authorization: Bearer <jwt-token>
A JWT consists of three parts separated by dots:
JWT authentication is commonly used for: