Obsługa błędów

Zestawy SDK uwierzytelniania Firebase zapewniają prosty sposób wychwytywania różnych błędów, które mogą wystąpić podczas korzystania z metod uwierzytelniania. Zestawy SDK dla Flutter ujawniają te błędy za pośrednictwem klasy FirebaseAuthException .

Dostarczany jest co najmniej code i message , jednak w niektórych przypadkach dostępne są również dodatkowe właściwości, takie jak adres e-mail i dane uwierzytelniające. Na przykład, jeśli użytkownik próbuje zalogować się przy użyciu adresu e-mail i hasła, wszelkie zgłoszone błędy mogą zostać wyraźnie wykryte:

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);
}

Każda metoda udostępnia różne kody błędów i komunikaty w zależności od typu wywołania uwierzytelnienia. Referencyjny interfejs API udostępnia aktualne szczegóły dotyczące błędów dla każdej metody.

Inne błędy, takie jak too-many-requests lub operation-not-allowed mogą zostać zgłoszone, jeśli osiągniesz limit uwierzytelnienia Firebase lub nie włączysz określonego dostawcy uwierzytelniania.

Obsługa błędów związanych account-exists-with-different-credential

Jeśli w konsoli Firebase włączyłeś ustawienie Jedno konto na adres e-mail, gdy użytkownik próbuje zalogować się do dostawcy (takiego jak Google) za pomocą adresu e-mail, który już istnieje dla innego dostawcy użytkownika Firebase (takiego jak Facebook), pojawi się błąd auth/account-exists-with-different-credential jest zgłaszane wraz z klasą AuthCredential (tokenem identyfikatora Google). Aby zakończyć proces logowania do wybranego dostawcy, użytkownik musi najpierw zalogować się do istniejącego dostawcy (np. Facebook), a następnie połączyć się z poprzednim AuthCredential (tokenem Google ID).

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...
  }
}