QOAuthExchangeAuthorizationCodeInput
@quik/oauth-server / QOAuthExchangeAuthorizationCodeInput
Type Alias: QOAuthExchangeAuthorizationCodeInput
QOAuthExchangeAuthorizationCodeInput =
object
Defined in: oauth-server/src/types.ts:68
Input used to exchange an authorization code for tokens.
Properties
clientId
clientId:
string
Defined in: oauth-server/src/types.ts:70
OAuth client id.
clientSecret?
optionalclientSecret?:string
Defined in: oauth-server/src/types.ts:72
Client secret for confidential clients.
code
code:
string
Defined in: oauth-server/src/types.ts:74
Authorization code value.
codeVerifier?
optionalcodeVerifier?:string
Defined in: oauth-server/src/types.ts:78
PKCE verifier.
redirectUri
redirectUri:
string
Defined in: oauth-server/src/types.ts:76
Redirect URI used in authorization step.