LoginSignup
0
0

More than 5 years have passed since last update.

指定メールアドレスのプロバイダーを配列で取得する

Posted at
    // 指定されたメールアドレスのアカウントが対応しているログイン方法を取得する
    Auth.auth().fetchProviders(forEmail: "foo@example.com") { (providers, error) in
      if providers == nil {
        print("アカウントが存在しません")
      }
      // 対応プロバイダーを出力する
      providers?.forEach({ (provider) in
        print("対応プロバイダー:\(provider)")
      })
    }

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0