สร้างผู้ใช้
คุณมีตัวเลือกต่อไปนี้ในการสร้างผู้ใช้ใหม่
จากแอป: สร้างผู้ใช้ใหม่ในโปรเจ็กต์ Firebase โดยเรียกใช้เมธอด
CreateUserWithEmailAndPasswordหรือลงชื่อเข้าใช้ผู้ใช้เป็นครั้งแรกโดยใช้ผู้ให้บริการข้อมูลประจำตัวแบบรวมศูนย์ เช่น Google Sign-In หรือ การเข้าสู่ระบบด้วย FacebookในคอนโซลFirebase : สร้างผู้ใช้ที่ตรวจสอบสิทธิ์ด้วยรหัสผ่านใหม่ ในแท็บความปลอดภัย > การตรวจสอบสิทธิ์ > ผู้ใช้
รับผู้ใช้ที่ลงชื่อเข้าใช้ในปัจจุบัน
วิธีที่แนะนำในการรับผู้ใช้ปัจจุบันคือการตั้งค่า Listener ในออบเจ็กต์ 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; }
การใช้ Listener จะช่วยให้มั่นใจได้ว่าออบเจ็กต์การตรวจสอบสิทธิ์จะไม่อยู่ในสถานะกลาง เช่น การเริ่มต้น เมื่อคุณรับผู้ใช้ปัจจุบัน
นอกจากนี้ คุณยังรับผู้ใช้ที่ลงชื่อเข้าใช้ในปัจจุบันได้โดยเรียกใช้ CurrentUser CurrentUser จะแสดงผลเป็น Null หากผู้ใช้ไม่ได้ลงชื่อเข้าใช้ หากผู้ใช้ออกจากระบบ IsValid() ของผู้ใช้จะแสดงผลเป็น False
เก็บข้อมูลเข้าสู่ระบบของผู้ใช้ไว้
ระบบจะจัดเก็บข้อมูลเข้าสู่ระบบของผู้ใช้ไว้ใน Keystore ในเครื่องหลังจากที่ผู้ใช้ลงชื่อเข้าใช้ คุณสามารถลบแคชข้อมูลเข้าสู่ระบบของผู้ใช้ในเครื่องได้โดยการออกจากระบบของผู้ใช้ Keystore จะขึ้นอยู่กับแพลตฟอร์ม
- แพลตฟอร์ม 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; } }
อัปเดตโปรไฟล์ของผู้ใช้
คุณสามารถอัปเดตข้อมูลโปรไฟล์พื้นฐานของผู้ใช้ ซึ่งได้แก่ ชื่อที่แสดงและ URL รูปโปรไฟล์ ด้วยเมธอด UpdateUserProfile เช่น
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 ดู หัวข้อเทมเพลตอีเมลใน ศูนย์ช่วยเหลือของ 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 ดู หัวข้อเทมเพลตอีเมลใน ศูนย์ช่วยเหลือของ 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 ได้ในแท็บ ความปลอดภัย > การตรวจสอบสิทธิ์ > ผู้ใช้
ตรวจสอบสิทธิ์ผู้ใช้ซ้ำ
การดำเนินการบางอย่างที่ละเอียดอ่อนด้านความปลอดภัย เช่น การลบบัญชี, การตั้งค่าอีเมลหลัก และ การเปลี่ยนรหัสผ่าน กำหนดให้ผู้ใช้ต้อง ลงชื่อเข้าใช้เมื่อไม่นานมานี้ หากคุณดำเนินการอย่างใดอย่างหนึ่งต่อไปนี้ และผู้ใช้ลงชื่อเข้าใช้นานเกินไป การดำเนินการจะล้มเหลว
เมื่อเกิดเหตุการณ์นี้ ให้ตรวจสอบสิทธิ์ผู้ใช้ซ้ำโดยรับข้อมูลเข้าสู่ระบบใหม่จากผู้ใช้และส่งข้อมูลเข้าสู่ระบบไปยัง 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 ได้โดยใช้
คำสั่ง auth:import ของ Firebase CLI เช่น
firebase auth:import users.json --hash-algo=scrypt --rounds=8 --mem-cost=14