Interface AuthorizationCodeAccessTokenOptions

interface AuthorizationCodeAccessTokenOptions {
    code: string;
    codeVerifier?: string;
}

Properties

Properties

code: string

The code returned from the authorization server after the resource owner successfully authenticates.

codeVerifier?: string

The code verifier used to ensure that the client is the only entity authorized to obtain an access token for the given code.