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

    Interface PasskeyRequestOptionsJSON

    JSON-safe WebAuthn credential request options returned by Auth0 for login. Pass directly to navigator.credentials.get(). Binary fields (challenge, allowCredentials[].id) are Base64URL-encoded strings.

    interface PasskeyRequestOptionsJSON {
        allowCredentials?: PasskeyCredentialDescriptorJSON[];
        challenge: string;
        extensions?: Record<string, unknown>;
        rpId?: string;
        timeout?: number;
        userVerification?: string;
    }
    Index

    Properties

    allowCredentials?: PasskeyCredentialDescriptorJSON[]
    challenge: string
    extensions?: Record<string, unknown>
    rpId?: string
    timeout?: number
    userVerification?: string