IdTokenClaims
Defined in: client/src/types.ts:6
Decoded claims from an ID token payload per RFC 7519 and OpenID Connect Core section 2.
Indexable
Section titled “Indexable”[
claim:string]:unknown
Additional claims present in the token.
Properties
Section titled “Properties”aud:
string|string[]
Defined in: client/src/types.ts:12
Audience(s) the token is intended for.
exp:
number
Defined in: client/src/types.ts:14
Expiration time as a Unix timestamp in seconds.
iat:
number
Defined in: client/src/types.ts:16
Issued-at time as a Unix timestamp in seconds.
iss:
string
Defined in: client/src/types.ts:10
Issuer identifier (URL) of the token.
nonce?
Section titled “nonce?”
optionalnonce?:string
Defined in: client/src/types.ts:18
Nonce value used to associate a client session with an ID token.
sub:
string
Defined in: client/src/types.ts:8
Subject identifier for the end-user.