react-native-auth0
    Preparing search index...

    Interface LoginWithOOBOptions

    Options for logging in using an OOB code

    interface LoginWithOOBOptions {
        bindingCode?: string;
        headers?: Record<string, string>;
        mfaToken: string;
        oobCode: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    bindingCode?: string

    The code used to bind the side channel (used to deliver the challenge) with the main channel you are using to authenticate. This is usually an OTP-like code delivered as part of the challenge message.

    headers?: Record<string, string>

    (Optional) Custom headers to include in the request.

    mfaToken: string

    The token received in the previous login response

    oobCode: string

    The out of band code received in the challenge response.