Passer au contenu principal
Classe qui implémente les fonctionnalités de l’écran mfa-push-list
Example
import MfaPushList from '@auth0/auth0-acul-js/mfa-push-list';

const mfaPushList = new MfaPushList();
await mfaPushList.selectMfaPushDevice({ deviceIndex: 0 });

Constructeurs

MfaPushList
Constructor

Propriétés

branding
client
organization
prompt
screen
tenant
transaction
untrustedData
user
screenIdentifier
string

Méthodes

getErrors
Récupère le tableau d’erreurs de transaction à partir du contexte, ou un tableau vide si aucune erreur n’existe.Un tableau d’objets d’erreur provenant du contexte de la transaction.
goBack
Promise<void>
Revient à l’écran précédent.
Example
import MfaPushList from '@auth0/auth0-acul-js/mfa-push-list';

const mfaPushList = new MfaPushList();
await mfaPushList.goBack();
selectMfaPushDevice
Promise<void>
Sélectionne un appareil enregistré dans la liste pour lancer une notification push d’AMF (MFA).
Example
import MfaPushList from '@auth0/auth0-acul-js/mfa-push-list';

const mfaPushList = new MfaPushList();
await mfaPushList.selectMfaPushDevice({ deviceIndex: 0 });