Type alias RequestCredentialsAutoDetectOptions

RequestCredentialsAutoDetectOptions: {
    challenge?: string;
    credentialQuery: CredentialQuery[];
    crossDeviceCallback: CrossDeviceCallback;
    mode?: Mode;
    redirectUri: string;
    walletProviderId?: string;
}

Options for auto detect device requestCredentials function

Type declaration

  • Optional challenge?: string

    An optional challenge string that is used to ensure the security and integrity of the credential request. If not provided, a challenge will be generated by default.

  • credentialQuery: CredentialQuery[]

    An array of CredentialQuery objects that specify the credentials to be requested.

  • crossDeviceCallback: CrossDeviceCallback

    The callback functions to be executed on success or failure of the credential request in cross device mode.

  • Optional mode?: Mode

    An optional mode in which the credentials are requested. If not provided, the mode is determined based on the device (isMobileDetect(navigator.userAgent)).

  • redirectUri: string

    The URI to which the user will be redirected after the credential request is completed.

  • Optional walletProviderId?: string

    An optional identifier for wallet configuration. If not provided, the default wallet will be used. This parameter is defined as part of your MATTR VII tenant verifier configuration

Generated using TypeDoc