ユーザーを作成する
CreateUserWithEmailAndPassword
メソッドを呼び出すか、Google ログインや Facebook ログインなどのフェデレーション ID プロバイダを使用してユーザーが初めてログインすると、Firebase プロジェクトに新しいユーザーが作成されます。
Firebase コンソールの [Authentication] セクションにある [ユーザー] ページで、新しいパスワード認証ユーザーを作成することもできます。
現在ログインしているユーザーを取得する
現在ログインしているユーザーを取得するには、Auth オブジェクトでリスナーを設定することをおすすめします。
Firebase.Auth.FirebaseAuth auth; Firebase.Auth.FirebaseUser user; // Handle initialization of the necessary firebase modules: void InitializeFirebase() { Debug.Log("Setting up Firebase Auth"); auth = Firebase.Auth.FirebaseAuth.DefaultInstance; auth.StateChanged += AuthStateChanged; AuthStateChanged(this, null); } // Track state changes of the auth object. void AuthStateChanged(object sender, System.EventArgs eventArgs) { if (auth.CurrentUser != user) { bool signedIn = user != auth.CurrentUser && auth.CurrentUser != null; if (!signedIn && user != null) { Debug.Log("Signed out " + user.UserId); } user = auth.CurrentUser; if (signedIn) { Debug.Log("Signed in " + user.UserId); } } } // Handle removing subscription and reference to the Auth instance. // Automatically called by a Monobehaviour after Destroy is called on it. void OnDestroy() { auth.StateChanged -= AuthStateChanged; auth = null; }
リスナーを使うと、現在ログインしているユーザーを取得するときに Auth オブジェクトが中間状態(初期化など)ではないことを確認できます。
CurrentUser
を呼び出して、現在ログインしているユーザーを取得することもできます。ユーザーがログインしていない場合、CurrentUser
は null を返します。ユーザーがログアウトすると、ユーザーの IsValid()
は false を返します。
ユーザーの認証情報を保持する
ユーザーのログイン後、ユーザーの認証情報はローカル キーストアに保存されます。ユーザー認証情報のローカル キャッシュは、ユーザーをログアウトさせることで削除できます。次のように、キーストアはプラットフォームに固有です。
- Apple プラットフォーム: Keychain Services
- Android: Android Keystore
- Windows: Credential Management API
- OS X: Keychain Services
- Linux: libsecret(ユーザーがインストールしておく必要があります)
ユーザーのプロフィールを取得する
ユーザーのプロフィール情報を取得するには、Firebase.Auth.FirebaseUser
のインスタンスのアクセサ メソッドを使用します。次に例を示します。
Firebase.Auth.FirebaseUser user = auth.CurrentUser; if (user != null) { string name = user.DisplayName; string email = user.Email; System.Uri photo_url = user.PhotoUrl; // The user's Id, unique to the Firebase project. // Do NOT use this value to authenticate with your backend server, if you // have one; use User.TokenAsync() instead. string uid = user.UserId; }
ユーザーのプロバイダ別のプロフィール情報を取得する
ユーザーにリンクされているログイン プロバイダからプロフィール情報を取得する場合は、ProviderData
メソッドを使用します。次に例を示します。
Firebase.Auth.FirebaseUser user = auth.CurrentUser; if (user != null) { foreach (var profile in user.ProviderData) { // Id of the provider (ex: google.com) string providerId = profile.ProviderId; // UID specific to the provider string uid = profile.UserId; // Name, email address, and profile photo Url string name = profile.DisplayName; string email = profile.Email; System.Uri photoUrl = profile.PhotoUrl; } }
ユーザーのプロフィールを更新する
UpdateUserProfile
メソッドを使用して、ユーザーの基本的なプロフィール情報(ユーザーの表示名とプロフィール写真の URL)を更新できます。次に例を示します。
Firebase.Auth.FirebaseUser user = auth.CurrentUser; if (user != null) { Firebase.Auth.UserProfile profile = new Firebase.Auth.UserProfile { DisplayName = "Jane Q. User", PhotoUrl = new System.Uri("https://example.com/jane-q-user/profile.jpg"), }; user.UpdateUserProfileAsync(profile).ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("UpdateUserProfileAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("UpdateUserProfileAsync encountered an error: " + task.Exception); return; } Debug.Log("User profile updated successfully."); }); }
ユーザーのメールアドレスを設定する
UpdateEmail
メソッドを使用して、ユーザーのメールアドレスを設定できます。次に例を示します。
Firebase.Auth.FirebaseUser user = auth.CurrentUser; if (user != null) { user.UpdateEmailAsync("user@example.com").ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("UpdateEmailAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("UpdateEmailAsync encountered an error: " + task.Exception); return; } Debug.Log("User email updated successfully."); }); }
ユーザーに確認メールを送信する
SendEmailVerification
メソッドを使用して、ユーザーにアドレス確認メールを送信できます。次に例を示します。
Firebase.Auth.FirebaseUser user = auth.CurrentUser; if (user != null) { user.SendEmailVerificationAsync().ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("SendEmailVerificationAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("SendEmailVerificationAsync encountered an error: " + task.Exception); return; } Debug.Log("Email sent successfully."); }); }
Firebase コンソールの [Authentication] セクションにある [メール テンプレート] ページで使用されるメール テンプレートをカスタマイズできます。Firebase ヘルプセンターでメール テンプレートについての記事をご覧ください。
ユーザーのパスワードを設定する
UpdatePassword
メソッドを使用して、ユーザーのパスワードを設定できます。次に例を示します。
Firebase.Auth.FirebaseUser user = auth.CurrentUser; string newPassword = "SOME-SECURE-PASSWORD"; if (user != null) { user.UpdatePasswordAsync(newPassword).ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("UpdatePasswordAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("UpdatePasswordAsync encountered an error: " + task.Exception); return; } Debug.Log("Password updated successfully."); }); }
パスワードの再設定メールを送信する
SendPasswordResetEmail
メソッドを使用して、ユーザーにパスワードの再設定メールを送信できます。次に例を示します。
string emailAddress = "user@example.com"; if (user != null) { auth.SendPasswordResetEmailAsync(emailAddress).ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("SendPasswordResetEmailAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("SendPasswordResetEmailAsync encountered an error: " + task.Exception); return; } Debug.Log("Password reset email sent successfully."); }); }
Firebase コンソールの [Authentication] セクションにある [メール テンプレート] ページで使用されるメール テンプレートをカスタマイズできます。Firebase ヘルプセンターでメール テンプレートについての記事をご覧ください。
Firebase コンソールからパスワードの再設定メールを送信することもできます。
ユーザーを削除する
Delete
メソッドを使用して、ユーザー アカウントを削除できます。次に例を示します。
Firebase.Auth.FirebaseUser user = auth.CurrentUser; if (user != null) { user.DeleteAsync().ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("DeleteAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("DeleteAsync encountered an error: " + task.Exception); return; } Debug.Log("User deleted successfully."); }); }
Firebase コンソールの [Authentication] セクションにある [Users] ページでユーザーを削除することもできます。
ユーザーを再認証する
アカウントの削除、メインのメールアドレスの設定、パスワードの変更といったセキュリティ上重要な操作を行うには、ユーザーが最近ログインしている必要があります。ユーザーが最近ログインしていない場合、このような操作を行っても失敗します。
このような場合は、ユーザーから新しいログイン認証情報を取得して Reauthenticate
に渡し、ユーザーを再認証します。次に例を示します。
Firebase.Auth.FirebaseUser user = auth.CurrentUser; // Get auth credentials from the user for re-authentication. The example below shows // email and password credentials but there are multiple possible providers, // such as GoogleAuthProvider or FacebookAuthProvider. Firebase.Auth.Credential credential = Firebase.Auth.EmailAuthProvider.GetCredential("user@example.com", "password1234"); if (user != null) { user.ReauthenticateAsync(credential).ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("ReauthenticateAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("ReauthenticateAsync encountered an error: " + task.Exception); return; } Debug.Log("User reauthenticated successfully."); }); }
ユーザー アカウントをインポートする
ユーザー アカウントをファイルから Firebase プロジェクトにインポートするには、Firebase CLI の auth:import
コマンドを使用します。次に例を示します。
firebase auth:import users.json --hash-algo=scrypt --rounds=8 --mem-cost=14