IO Wallet SDK
    Preparing search index...

    Interface RetrieveAuthorizationCodeAccessTokenOptions

    interface RetrieveAuthorizationCodeAccessTokenOptions {
        additionalRequestPayload?: Record<string, unknown>;
        authorizationCode: string;
        callbacks: Pick<
            CallbackContext,
            "clientAuthentication"
            | "fetch"
            | "generateRandom"
            | "hash"
            | "signJwt",
        >;
        pkceCodeVerifier: string;
        redirectUri: string;
    }
    Index

    Properties

    additionalRequestPayload?: Record<string, unknown>

    Additional payload to include in the access token request. Items will be encoded and sent using x-www-form-urlencoded format. Nested items (JSON) will be stringified and url encoded.

    authorizationCode: string

    The authorization code

    callbacks: Pick<
        CallbackContext,
        "clientAuthentication"
        | "fetch"
        | "generateRandom"
        | "hash"
        | "signJwt",
    >

    Callbacks to use for requesting access token

    pkceCodeVerifier: string

    PKCE Code verifier that was used in the authorization request.

    redirectUri: string

    Redirect uri to include in the access token request. It MUST be set as in the Request Object.