package
4.5.1
Repository: https://github.com/golang-jwt/jwt.git
Documentation: pkg.go.dev

# Functions

ParseFromRequest extracts and parses a JWT token from an HTTP request.
ParseFromRequestWithClaims is an alias for ParseFromRequest but with custom Claims type.
WithClaims parses with custom claims.
WithParser parses using a custom parser.

# Variables

AuthorizationHeaderExtractor extracts a bearer token from Authorization header Uses PostExtractionFilter to strip "Bearer " prefix from header.
Errors.
OAuth2Extractor is an Extractor for OAuth2 access tokens.

# Structs

BearerExtractor extracts a token from the Authorization header.
PostExtractionFilter wraps an Extractor in this to post-process the value before it's handed off.

# Interfaces

Extractor is an interface for extracting a token from an HTTP request.

# Type aliases

ArgumentExtractor extracts a token from request arguments.
HeaderExtractor is an extractor for finding a token in a header.
MultiExtractor tries Extractors in order until one returns a token string or an error occurs.
No description provided by the author