@twilio/flex-sdk
    Preparing search index...

    Interface SSOExchangeTokenParams

    Parameters for exchanging an authorization code for a token in the SSO authentication flow.

    interface SSOExchangeTokenParams {
        appType?: AppType;
        code: string;
        codeVerifier: string;
        isConsoleLogin?: false;
        nonce: string;
        ssoProfileSid: string;
    }
    Index

    Properties

    appType?: AppType

    App type. This is needed if it was provided in the initial authentication request.

    code: string

    Auth code, required with authorization_code grant

    codeVerifier: string

    Code verifier (PKCE), required with authorization_code grant.

    isConsoleLogin?: false

    Flag indicating console login (Must be true for console login)

    nonce: string

    Nonce, required with authorization_code grant.

    ssoProfileSid: string

    SSO profile for which the auth code was obtained. (Required for SSO login)