L'errore generato quando l'utente deve fornire un secondo fattore per accedere correttamente.
Il codice di errore per questo errore è auth/multi-factor-auth-required
.
Firma:
export interface MultiFactorError extends AuthError
Estende: AuthError
Proprietà
Proprietà | Tipo | Descrizione |
---|---|---|
customData | AuthError ['customData'] & { sola lettura OperationType: (tipo di OperationTypeMap )[chiave del tipo OperationTypeMap ]; } | Dettagli sul MultiFactorError. |
MultiFactorError.customData
Dettagli sul MultiFactorError.
Firma:
readonly customData: AuthError['customData'] & {
readonly operationType: (typeof OperationTypeMap)[keyof typeof OperationTypeMap];
};
Esempio
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);