bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iExchangeSIWBBAuthorizationCodePayload

    interface iExchangeSIWBBAuthorizationCodePayload {
        client_id?: string;
        client_secret?: string;
        code?: string;
        code_verifier?: string;
        grant_type?: "authorization_code" | "refresh_token";
        options?: VerifySIWBBOptions;
        redirect_uri?: string;
        refresh_token?: string;
    }
    Index

    Properties

    client_id?: string

    Client ID for the SIWBB request.

    client_secret?: string

    Client secret for the SIWBB request.

    code?: string

    The SIWBB request.

    code_verifier?: string

    The code verifier for the SIWBB request (if used with PKCE).

    grant_type?: "authorization_code" | "refresh_token"

    The grant type for the SIWBB request.

    We attempt to verify the current status with each request. You can provide additional options for verification here.

    redirect_uri?: string

    The redirect URI for the SIWBB request. Only required if the code was created with a redirect URI.

    refresh_token?: string

    The refresh token to use for the SIWBB request.