Overview of Gin JWT Middleware features
masterGin JWT Middleware provides:
- Simple JWT authentication for the Gin web framework.
- Built-in handlers for
login,refresh, andlogout. - Customizable authentication, authorization, and claims.
- Support for both Cookie and Header-based tokens.
- RFC 6749 compliant refresh tokens (OAuth 2.0 standard) with automatic rotation.
- Pluggable refresh token storage (In-memory or Redis).
- Direct token generation capabilities without requiring HTTP middleware.
- Structured
Tokentype with metadata.