Kullanıcı oluşturma
Firebase projenizde, yeni bir kullanıcı oluşturmak için
CreateUserWithEmailAndPassword
yöntemini kullanarak veya bir kullanıcının birleştirilmiş kimlik kullanarak ilk kez oturum açmasını sağlayarak
sağlayıcı (ör. Google ile Oturum Açma veya
Facebook'a Giriş.
Ayrıca Kimlik Doğrulama bölümünden şifreyle kimliği doğrulanmış yeni kullanıcılar da Firebase konsolunun Kullanıcılar sayfasındaki bölümüne gidin.
Oturum açmış durumdaki kullanıcıyı getir
Geçerli kullanıcıyı edinmenin önerilen yolu Kimlik doğrulama nesnesi:
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; }
Bir işleyici kullanarak Auth nesnesinin bir arada olmadığından emin olun durumu (ör. başlatma)
Şu anda oturum açmış olan kullanıcıyı CurrentUser
numaralı telefonu arayarak da öğrenebilirsiniz.
kullanıcı oturum açmamışsa CurrentUser
, null değerini döndürür. Kullanıcı oturumu kapattığında
kullanıcının IsValid()
parametresi "yanlış" değerini döndürür.
Kullanıcının kimlik bilgilerini korumak
Kullanıcının kimlik bilgileri, kullanıcı yüklendikten sonra yerel anahtar deposunda oturum açıldı. Kullanıcı kimlik bilgilerinin yerel önbelleği imzalanarak silinebilir çıkar. Anahtar deposu platforma özgüdür:
- Apple platformları: Anahtar Zinciri Hizmetleri.
- Android: Android Anahtar Deposu.
- Windows: Kimlik Bilgisi Yönetimi API'si.
- OS X: Anahtar Zinciri Hizmetleri.
- Linux: Kullanıcının yüklemiş olması gereken libsecret.
Kullanıcının profilini alma
Kullanıcının profil bilgilerini almak için
Firebase.Auth.FirebaseUser
Örneğin:
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; }
Kullanıcının sağlayıcıya özel profil bilgilerini alma
Bir
kullanıcı için ProviderData
yöntemini kullanın. Örneğin:
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; } }
Kullanıcı profilini güncelleme
Kullanıcının temel profil bilgilerini (kullanıcının görünen adı) güncelleyebilirsiniz.
ve profil fotoğrafı URL'si (UpdateUserProfile
yöntemiyle). Örneğin:
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."); }); }
Kullanıcının e-posta adresini ayarlama
Kullanıcının e-posta adresini UpdateEmail
yöntemiyle ayarlayabilirsiniz. Örneğin:
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."); }); }.
Bir kullanıcıya doğrulama e-postası gönderme
Şu adrese sahip bir kullanıcıya adres doğrulama e-postası gönderebilirsiniz:
SendEmailVerification
yöntemini çağırın. Örneğin:
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."); }); }
Şu sayfanın Kimlik doğrulama bölümünde kullanılan e-posta şablonunu özelleştirebilirsiniz: Firebase konsolunda, E-posta Şablonları sayfasından ulaşabilirsiniz. E-posta Şablonları'na göz atın: Firebase Yardım Merkezi.
Kullanıcı şifresi ayarlayın
Kullanıcı şifresini UpdatePassword
yöntemiyle ayarlayabilirsiniz. Örneğin:
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."); }); }.
Şifre sıfırlama e-postası gönderin
SendPasswordResetEmail
kullanan bir kullanıcıya şifre sıfırlama e-postası gönderebilirsiniz.
yöntemidir. Örneğin:
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."); }); }
Şu sayfanın Kimlik doğrulama bölümünde kullanılan e-posta şablonunu özelleştirebilirsiniz: Firebase konsolunda, E-posta Şablonları sayfasından ulaşabilirsiniz. E-posta Şablonları'na göz atın: Firebase Yardım Merkezi.
Şifre sıfırlama e-postalarını Firebase konsolundan da gönderebilirsiniz.
Kullanıcı silme
Bir kullanıcı hesabını Delete
yöntemini kullanarak silebilirsiniz. Örneğin:
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."); }); }.
Ayrıca, Firebase konsolu'nu seçin.
Kullanıcının kimliğini yeniden doğrulama
Güvenlik açısından hassas işlemler (ör. hesap silme, birincil e-posta adresini ayarlama ve şifreyi değiştirme - kullanıcının kısa bir süre önce oturum açtı. Bu işlemlerden birini gerçekleştirirseniz ve kullanıcı oturum açtıysa çok uzun zaman önce işlem başarısız olur.
Bu durumda, yeni oturum açma kimlik bilgileri alarak kullanıcının kimliğini tekrar doğrulayın
kimlik bilgilerini Reauthenticate
adlı sağlayıcıya iletmelidir. Örneğin:
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."); }); }
Kullanıcı hesaplarını içe aktarma
Kullanıcı hesaplarını bir dosyadan Firebase projenize aktarmak için
Firebase CLI'ın auth:import
komutu. Örneğin:
firebase auth:import users.json --hash-algo=scrypt --rounds=8 --mem-cost=14