Terminology Index
Glossary
2953 terms
Token-Based Auth
Authentication that issues a token (often JWT) after initial verification, which the client presents on subsequent requests. The dominant model for cloud-native APIs and microservices.
Token-based auth replaces continuous re-authentication with a token issued at sign-in and presented on each request, typically a JWT or opaque token validated by the receiving service. It scales well for distributed cloud-native systems, where centralized session storage would bottleneck. Cloud-native security focuses on token validation, lifetime, audience scoping, and rotation: short-lived access tokens, refresh tokens, and careful handling reduce the impact of any one leaked token.
Introduced in: Cloud-Native Security
Examples
- Issuing a JWT after sign-in and presenting it on each API call.
- Using short-lived access tokens with refresh tokens for cloud-native APIs.
- Validating audience and signature on every received token.
Related
