react-native-auth0
    Preparing search index...

    Interface LoginWithOTPOptions

    Options for logging in using an OTP code

    interface LoginWithOTPOptions {
        audience?: string;
        headers?: Record<string, string>;
        mfaToken: string;
        otp: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    audience?: string

    The API audience

    headers?: Record<string, string>

    (Optional) Custom headers to include in the request.

    mfaToken: string

    The token received in the previous login response

    otp: string

    The one time password code provided by the resource owner, typically obtained from an MFA application such as Google Authenticator or Guardian.