Firebase'de Kullanıcıları Yönetme

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:

class MyAuthStateListener : public firebase::auth::AuthStateListener {
 public:
  void OnAuthStateChanged(firebase::auth::Auth* auth) override {
    firebase::auth::User user = auth->current_user();
    if (user.is_valid()) {
      // User is signed in
      printf("OnAuthStateChanged: signed_in %s\n", user.uid().c_str());
    } else {
      // User is signed out
      printf("OnAuthStateChanged: signed_out\n");
    }
    // ...
  }
};
// ... initialization code
// Test notification on registration.
MyAuthStateListener state_change_listener;
auth->AddAuthStateListener(&state_change_listener);

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ı current_user numaralı telefonu arayarak da öğrenebilirsiniz. kullanıcı oturum açmamışsa kullanıcının is_valid yöntemi false (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:

Kullanıcının profilini alma

Kullanıcının profil bilgilerini almak için firebase::auth::User Örneğin:

firebase::auth::User user = auth->current_user();
if (user.is_valid()) {
  std::string name = user.display_name();
  std::string email = user.email();
  std::string photo_url = user.photo_url();
  // 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 firebase::auth::User::Token() instead.
  std::string uid = user.uid();
}

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::User user = auth->current_user();
if (user.is_valid()) {
  for (auto it = user.provider_data().begin();
       it != user.provider_data().end(); ++it) {
    firebase::auth::UserInfoInterface profile = *it;
    // Id of the provider (ex: google.com)
    std::string providerId = profile.provider_id();

    // UID specific to the provider
    std::string uid = profile.uid();

    // Name, email address, and profile photo Url
    std::string name = profile.display_name();
    std::string email = profile.email();
    std::string photoUrl = profile.photo_url();
  }
}

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::User user = auth->current_user();
if (user.is_valid()) {
  firebase::auth::User::UserProfile profile;
  profile.display_name = "Jane Q. User";
  profile.photo_url = "https://example.com/jane-q-user/profile.jpg";
  user.UpdateUserProfile(profile).OnCompletion(
      [](const firebase::Future<void>& completed_future, void* user_data) {
        // We are probably in a different thread right now.
        if (completed_future.error() == 0) {
          printf("User profile updated.");
        }
      },
      nullptr);  // pass user_data here.
}

Kullanıcının e-posta adresini ayarlama

Kullanıcının e-posta adresini UpdateEmail yöntemiyle ayarlayabilirsiniz. Örneğin:

firebase::auth::User user = auth->current_user();
if (user.is_valid()) {
  user.UpdateEmail("user@example.com")
      .OnCompletion(
          [](const firebase::Future<void>& completed_future,
             void* user_data) {
            // We are probably in a different thread right now.
            if (completed_future.error() == 0) {
              printf("User email address updated.");
            }
          },
          nullptr);
}
.

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::User user = auth->current_user();
if (user.is_valid()) {
  user.SendEmailVerification().OnCompletion(
      [](const firebase::Future<void>& completed_future, void* user_data) {
        // We are probably in a different thread right now.
        if (completed_future.error() == 0) {
          printf("Email sent.");
        }
      },
      nullptr);
}

Ş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::User user = auth->current_user();
std::string newPassword = "SOME-SECURE-PASSWORD";

if (user.is_valid()) {
  user.UpdatePassword(newPassword.c_str())
      .OnCompletion(
          [](const firebase::Future<void>& completed_future,
             void* user_data) {
            // We are probably in a different thread right now.
            if (completed_future.error() == 0) {
              printf("password updated.");
            }
          },
          nullptr);
}
.

Ş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:

std::string emailAddress = "user@example.com";

auth->SendPasswordResetEmail(emailAddress.c_str())
    .OnCompletion(
        [](const firebase::Future<void>& completed_future,
           void* user_data) {
          // We are probably in a different thread right now.
          if (completed_future.error() == 0) {
            // Email sent.
          } else {
            // An error happened.
            printf("Error %d: %s", completed_future.error(),
                   completed_future.error_message());
          }
        },
        nullptr);

Ş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::User user = auth->current_user();
if (user.is_valid()) {
  user.Delete().OnCompletion(
      [](const firebase::Future<void>& completed_future, void* user_data) {
        if (completed_future.error() == 0) {
          // User deleted.
        } else {
          // An error happened.
          printf("Error %d: %s", completed_future.error(),
                 completed_future.error_message());
        }
      },
      nullptr);
}
.

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::User user = auth->current_user();

// 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.is_valid()) {
  user.Reauthenticate(credential)
      .OnCompletion(
          [](const firebase::Future<void>& completed_future,
             void* user_data) {
            if (completed_future.error() == 0) {
              printf("User re-authenticated.");
            }
          },
          nullptr);
}

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