@auth0/nextjs-auth0 - v4.25.0
    Preparing search index...

    Interface PasswordlessDbGetTokenOptions

    Options to exchange a challenge auth_session and user-entered OTP for tokens.

    Throws PasswordlessDbGetTokenError with error: "invalid_request" if the auth_session was non-functional (blocked user, signup disabled for a non-existent user, wrong OTP, or expired session).

    interface PasswordlessDbGetTokenOptions {
        authSession: string;
        otp: string;
    }
    Index

    Properties

    Properties

    authSession: string

    The opaque authSession returned by challengeWithEmail or challengeWithPhoneNumber.

    otp: string

    The one-time password entered by the user.