RFC 6750 — OAuth 2.0 Bearer Token Usage
Spec: datatracker.ietf.org/doc/html/rfc6750Status: Full
RFC 6750 defines how bearer tokens are presented to protected resources and how resources validate them.
Implemented
- Authorization header —
Authorization: Bearer <token>is the canonical way to present access tokens to AuthHero APIs. - JWT access tokens — AuthHero issues RS256-signed JWTs as access tokens; resource servers can validate them against the tenant's JWKS without calling AuthHero.
- Scope enforcement — protected endpoints assert required scopes against the token's
scopeclaim. WWW-Authenticateresponses — missing or invalid tokens yield401 Unauthorizedwith aWWW-Authenticate: Bearerchallenge includingerroranderror_description.
Not implemented / out of scope
- Form-encoded body parameter and URI query parameter token delivery — these alternative transport mechanisms from RFC 6750 §2.2 and §2.3 are intentionally not supported; the
Authorizationheader is the only accepted transport.