Parameters required for exchanging an authorization code for an access token.
export interface TokenExchangeParams { clientId: string; clientSecret: string; redirectUri: string; code: string;} Copy
export interface TokenExchangeParams { clientId: string; clientSecret: string; redirectUri: string; code: string;}
The client ID of the application.
The client secret of the application.
The redirect URI used in the OAuth flow.
The authorization code received from the OAuth provider.
Parameters required for exchanging an authorization code for an access token.
Source