エラー処理

Firebase Authentication SDK では、認証方法の使用で発生するさまざまなエラーを簡単に検出できます。Flutter 用の SDK では、これらのエラーの検出に FirebaseAuthException クラスを使用します。

codemessage が提供されますが、このほかにメールアドレスや認証情報などの追加プロパティが提供される場合もあります。たとえば、ユーザーがメールアドレスとパスワードでログインを試みたときにスローされたエラーを明示的に検出できます。

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

各メソッドは、認証呼び出しのタイプに応じて、さまざまなエラーコードとメッセージを提供します。リファレンス API で、各メソッドのエラーに関する最新情報を確認できます。

Firebase Authentication の割り当てに達した場合や、特定の認証プロバイダが有効になっていない場合は、too-many-requestsoperation-not-allowed など、他のエラーがスローされることがあります。

account-exists-with-different-credential エラーの処理

Firebase コンソールで [1 つのメールアドレスにつき 1 つのアカウント] 設定を有効にしている場合、Firebase ユーザーが、あるプロバイダ(Google など)用にすでに存在しているメールアドレスを使って別のプロバイダ(Facebook など)にログインしようとすると、AuthCredential クラス(Google ID トークン)とともにエラー auth/account-exists-with-different-credential がスローされます。目的のプロバイダへのログインフローを完了するには、まず既存のプロバイダ(Facebook など)にログインしてから、AuthCredential(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...
  }
}