Interface: IssuedTokens
Defined in: oauthServerTypes.ts:287
Tokens returned by the app's OAuthServerOptions.issueTokens hook.
Properties
accessToken
accessToken:
string
Defined in: oauthServerTypes.ts:289
The access token string (JWT, opaque, …).
expiresIn?
optionalexpiresIn?:number
Defined in: oauthServerTypes.ts:293
Access token lifetime in seconds, surfaced as expires_in.
refreshToken?
optionalrefreshToken?:string
Defined in: oauthServerTypes.ts:291
Optional refresh token enabling the refresh_token grant.
scope?
optionalscope?:string
Defined in: oauthServerTypes.ts:295
Granted scopes as a space-separated string. Defaults to the bound scopes.