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

    Interface PasskeyGetTokenOptions

    Options for completing a passkey authentication flow (signup or login). Combines the authSession from the challenge with the serialised credential from the WebAuthn ceremony.

    interface PasskeyGetTokenOptions {
        audience?: string;
        authResponse: PasskeyAuthResponse;
        authSession: string;
        connection?: string;
        organization?: string;
        scope?: string;
    }
    Index

    Properties

    audience?: string

    Requested API audience.

    authResponse: PasskeyAuthResponse

    Serialised credential from navigator.credentials.create/get().

    authSession: string

    Flow state token returned by the challenge call.

    connection?: string

    Auth0 database connection name.

    organization?: string

    Auth0 organization ID.

    scope?: string

    Requested OAuth scopes (e.g. "openid profile email").