यह गड़बड़ी तब होती है, जब उपयोगकर्ता को साइन इन करने के लिए दूसरा चरण पूरा करने की ज़रूरत होती है.
इस गड़बड़ी का गड़बड़ी कोड auth/multi-factor-auth-required
है.
हस्ताक्षर:
export interface MultiFactorError extends AuthError
एक्सप्लेन किया जाता है: AuthError
प्रॉपर्टी
प्रॉपर्टी | टाइप | ब्यौरा |
---|---|---|
customData | AuthError['customData'] और {सिर्फ़ पढ़ने के लिए ऑपरेशन टाइप: (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);