IntrospectionResponse
Defined in: packages/core/src/types.ts:149
Token introspection response as defined in RFC 7662 Section 2.2.
Properties
Section titled “Properties”active
Section titled “active”active:
boolean
Defined in: packages/core/src/types.ts:151
Whether the token is currently active.
optionalaud?:string
Defined in: packages/core/src/types.ts:167
Audience the token is intended for.
client_id?
Section titled “client_id?”
optionalclient_id?:string
Defined in: packages/core/src/types.ts:155
Client identifier for the token.
optionalexp?:number
Defined in: packages/core/src/types.ts:161
Expiration time as a Unix timestamp in seconds (RFC 7662 Section 2.2).
optionaliat?:number
Defined in: packages/core/src/types.ts:163
Issued-at time as a Unix timestamp in seconds.
optionaliss?:string
Defined in: packages/core/src/types.ts:169
Issuer of the token.
scope?
Section titled “scope?”
optionalscope?:string
Defined in: packages/core/src/types.ts:153
Space-delimited scopes associated with the token.
optionalsub?:string
Defined in: packages/core/src/types.ts:165
Subject of the token.
token_type?
Section titled “token_type?”
optionaltoken_type?:string
Defined in: packages/core/src/types.ts:159
Token type (e.g., "Bearer").
username?
Section titled “username?”
optionalusername?:string
Defined in: packages/core/src/types.ts:157
Human-readable identifier for the resource owner.