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

    Interface LoginDetailsResponse

    Response containing OAuth2 login URL and PKCE parameters for secure authentication flow.

    interface LoginDetailsResponse {
        codeChallenge: string;
        codeVerifier: string;
        loginUrl: string;
        nonce: string;
        state: string;
    }
    Index

    Properties

    codeChallenge: string

    The code challenge value used for exchanging the authorization code for an access token.

    codeVerifier: string

    The code verifier value used for exchanging the authorization code for an access token.

    loginUrl: string

    The login URL to redirect the user to for authentication.

    nonce: string

    The nonce value used for exchanging the authorization code for an access token.

    state: string

    The state value used for exchanging the authorization code for an access token.