ping-identity
    Preparing search index...

    Type Alias JourneyFidoAuthenticationField

    JourneyFidoAuthenticationField: JourneyBaseField & {
        type: "FidoAuthenticationCallback";
        value?: Record<string, unknown>;
    }

    Normalized field for a FidoAuthenticationCallback with typed named fields.

    Type Declaration

    • type: "FidoAuthenticationCallback"
    • Optionalvalue?: Record<string, unknown>

      WebAuthn assertion options.

      iOS only — always undefined on Android. See type-level remarks for details.

    Use rn-fido (authenticateForJourney) to drive the authentication flow.

    The value field is present on iOS only — the native iOS bridge aliases MetadataCallback-backed FIDO flows to "FidoAuthenticationCallback" and emits the WebAuthn assertion options as value. On Android, MetadataCallback-backed FIDO flows surface as type: "MetadataCallback" directly; value is always undefined on Android for this normalized field type.