MultiFactorError interface

Der Fehler wird ausgegeben, wenn der Benutzer für eine erfolgreiche Anmeldung einen zweiten Faktor angeben muss.

Der Fehlercode für diesen Fehler lautet auth/multi-factor-auth-required .

Unterschrift:

export interface MultiFactorError extends AuthError 

Erweitert: AuthError

Eigenschaften

Eigentum Typ Beschreibung
benutzerdefinierteDaten AuthError ['customData'] & { readonly operationType: (typeof OperationTypeMap )[keyof typeof OperationTypeMap ]; } Details zum MultiFactorError.

MultiFactorError.customData

Details zum MultiFactorError.

Unterschrift:

readonly customData: AuthError['customData'] & {
        readonly operationType: (typeof OperationTypeMap)[keyof typeof OperationTypeMap];
    };

Beispiel

let resolver;
let multiFactorHints;

signInWithEmailAndPassword(auth, email, password)
    .then((result) => {
      // User signed in. No 2nd factor challenge is needed.
    })
    .catch((error) => {
      if (error.code == 'auth/multi-factor-auth-required') {
        resolver = getMultiFactorResolver(auth, error);
        multiFactorHints = resolver.hints;
      } else {
        // Handle other errors.
      }
    });

// Obtain a multiFactorAssertion by verifying the second factor.

const userCredential = await resolver.resolveSignIn(multiFactorAssertion);