Sign in

Type: AccessTokenClaims

Claims contained in a validated OAuth 2.0 access token.

Extends

Indexable

[key: string]: unknown

Additional custom or provider-specific claims.

aud

aud: string | string[]

Intended audience(s) of the token.

Inherited from

JwtClaims.aud


client_id?

optional client_id: string

Client ID of the application the token was issued to.


exp

exp: number

Expiration time of the token (Unix epoch seconds).

Inherited from

JwtClaims.exp


iat

iat: number

Time at which the token was issued (Unix epoch seconds).

Inherited from

JwtClaims.iat


iss

iss: string

Issuer identifier - the authorization server that issued the token.

Inherited from

JwtClaims.iss


jti?

optional jti: string

JWT ID (unique identifier for the token).


nbf?

optional nbf: number

Not-before time (Unix epoch seconds).

Inherited from

JwtClaims.nbf


scope?

optional scope: string

OAuth scope associated with the token.


sub

sub: string

Subject identifier — uniquely identifies the authenticated user.

Inherited from

JwtClaims.sub

© 2024 MonoCloud. All rights reserved.