Firebase से पुष्टि करने वाले SDK टूल की मदद से, अलग-अलग तरह की गड़बड़ियों को आसानी से पकड़ा जा सकता है. इन गड़बड़ियों का इस्तेमाल करने पर,
पुष्टि करने के तरीके. Flutter के लिए SDK टूल, FirebaseAuthException
के ज़रिए इन गड़बड़ियों को दिखाते हैं
क्लास.
कम से कम, code
और message
दिए गए हैं. हालांकि, कुछ मामलों में ईमेल पते जैसी अन्य प्रॉपर्टी भी दी जा सकती हैं
और क्रेडेंशियल भी दिए जाते हैं. उदाहरण के लिए, अगर उपयोगकर्ता ईमेल और पासवर्ड से साइन इन करने की कोशिश कर रहा है,
की गई किसी भी गड़बड़ी को आसानी से पकड़ा जा सकता है:
try {
await FirebaseAuth.instance.signInWithEmailAndPassword(
email: "barry.allen@example.com",
password: "SuperSecretPassword!"
);
} on FirebaseAuthException catch (e) {
print('Failed with error code: ${e.code}');
print(e.message);
}
हर तरीका, पुष्टि करने के अनुरोध के टाइप के आधार पर अलग-अलग गड़बड़ी के कोड और मैसेज देता है. कॉन्टेंट बनाने Reference API, हर तरीके की गड़बड़ियों के बारे में अप-टू-डेट जानकारी देता है.
अगर आप Firebase से पुष्टि करने का कोटा पूरा कर लेते हैं, तो too-many-requests
या operation-not-allowed
जैसी दूसरी गड़बड़ियां हो सकती हैं,
या आपने पुष्टि करने वाली किसी खास कंपनी को चालू नहीं किया है.
account-exists-with-different-credential
गड़बड़ियां मैनेज की जा रही हैं
अगर आपने Firebase कंसोल में, हर ईमेल पते के लिए एक खाता वाली सेटिंग चालू की है, तो
जब कोई उपयोगकर्ता किसी ऐसे ईमेल से किसी सेवा देने वाली कंपनी (जैसे कि Google) में साइन इन करने की कोशिश करता है जो किसी दूसरे Firebase उपयोगकर्ता के सेवा देने वाले के लिए पहले से मौजूद है
(जैसे कि Facebook), गड़बड़ी auth/account-exists-with-different-credential
को AuthCredential
क्लास (Google आईडी टोकन) के साथ दिखाया जाता है.
पसंदीदा कंपनी तक साइन इन करने के लिए, उपयोगकर्ता को सबसे पहले Facebook जैसी मौजूदा कंपनी में साइन इन करना होगा. इसके बाद, उस कंपनी से लिंक करना होगा
AuthCredential
(Google आईडी टोकन).
FirebaseAuth auth = FirebaseAuth.instance;
// Create a credential from a Google Sign-in Request
var googleAuthCredential = GoogleAuthProvider.credential(accessToken: 'xxxx');
try {
// Attempt to sign in the user in with Google
await auth.signInWithCredential(googleAuthCredential);
} on FirebaseAuthException catch (e) {
if (e.code == 'account-exists-with-different-credential') {
// The account already exists with a different credential
String email = e.email;
AuthCredential pendingCredential = e.credential;
// Fetch a list of what sign-in methods exist for the conflicting user
List<String> userSignInMethods = await auth.fetchSignInMethodsForEmail(email);
// If the user has several sign-in methods,
// the first method in the list will be the "recommended" method to use.
if (userSignInMethods.first == 'password') {
// Prompt the user to enter their password
String password = '...';
// Sign the user in to their account with the password
UserCredential userCredential = await auth.signInWithEmailAndPassword(
email: email,
password: password,
);
// Link the pending credential with the existing account
await userCredential.user.linkWithCredential(pendingCredential);
// Success! Go back to your application flow
return goToApplication();
}
// Since other providers are now external, you must now sign the user in with another
// auth provider, such as Facebook.
if (userSignInMethods.first == 'facebook.com') {
// Create a new Facebook credential
String accessToken = await triggerFacebookAuthentication();
var facebookAuthCredential = FacebookAuthProvider.credential(accessToken);
// Sign the user in with the credential
UserCredential userCredential = await auth.signInWithCredential(facebookAuthCredential);
// Link the pending credential with the existing account
await userCredential.user.linkWithCredential(pendingCredential);
// Success! Go back to your application flow
return goToApplication();
}
// Handle other OAuth providers...
}
}