사용자가 로그인을 위해 두 번째 단계를 제공해야 하는 경우 발생하는 오류입니다.
이 오류의 오류 코드는 auth/multi-factor-auth-required
입니다.
서명:
export interface MultiFactorError extends AuthError
확장: AuthError
속성
속성 | 유형 | 설명 |
---|---|---|
customData | AuthError['customData'] 및 { readonly operationType: (typeof OperationTypeMap)[keyof typeof OperationTypeMap]; } | MultiFactorError에 관한 세부정보입니다. |
MultiFactorError.customData
MultiFactorError에 관한 세부정보입니다.
서명:
readonly customData: AuthError['customData'] & {
readonly operationType: (typeof OperationTypeMap)[keyof typeof OperationTypeMap];
};
예
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);