tokenstatus
Tokenstatus is a generic term used in information security and software development to describe the current state of an authentication or authorization token within a system. It indicates whether a token can be used to access resources at a given moment and is typically maintained by the token issuer or the resource server.
Common token statuses include active (valid), expired, revoked (or blacklisted), not yet valid, suspended, and deactivated.
In practice, status is determined in different ways. Opaque tokens rely on a central authorization server or
Security considerations related to tokenstatus include maintaining short token lifetimes, using token rotation for refresh flows,
See also: OAuth 2.0, OpenID Connect, JWT, token revocation, token introspection.