ping-identity
    Preparing search index...

    Type Alias BindingJourneyBindOptions

    Options for Journey-scoped device binding callback execution.

    type BindingJourneyBindOptions = {
        appPin?: BindingAppPinConfig;
        biometric?: BindingBiometricBindConfig;
        deviceName?: string;
        index?: number;
        jwt?: BindingJwtConfig;
        signingAlgorithm?: string;
    }
    Index

    Properties

    deviceName?: string

    Optional human-readable device name sent to the server during binding.

    Defaults to the native device model name when omitted.

    index?: number

    Optional callback index when multiple DeviceBindingCallback instances are present.

    signingAlgorithm?: string

    JWS algorithm for the signed JWT proof (Android only).

    Defaults to "RS512" when omitted. Common values: "RS256", "RS384", "RS512". iOS uses ES256 exclusively (Secure Enclave) and ignores this option.