Tworzenie konta użytkownika
Tworzysz nowego użytkownika w projekcie Firebase, wywołując metodę
createUser
lub przez zalogowanie użytkownika po raz pierwszy przy użyciu tożsamości sfederowanej
dostawcy, takiego jak Logowanie przez Google,
Logowanie do Facebooka.
Nowych użytkowników z uwierzytelnianiem za pomocą hasła możesz też utworzyć na stronie w konsoli Firebase, na stronie Użytkownicy.
Pobierz informacje o zalogowanym użytkowniku
Zalecanym sposobem na uzyskanie bieżącego użytkownika jest ustawienie detektora Obiekt Auth:
Swift
handle = Auth.auth().addStateDidChangeListener { auth, user in // ... }
Objective-C
self.handle = [[FIRAuth auth] addAuthStateDidChangeListener:^(FIRAuth *_Nonnull auth, FIRUser *_Nullable user) { // ... }];
Dzięki użyciu detektora masz pewność, że obiekt Auth nie jest w trybie pośrednim (np. inicjalizację) po otrzymaniu bieżącego użytkownika.
Możesz też sprawdzić informacje o zalogowanym użytkowniku, korzystając z: currentUser
usłudze. Jeśli użytkownik nie jest zalogowany, currentUser
ma wartość nil:
Swift
if Auth.auth().currentUser != nil { // User is signed in. // ... } else { // No user is signed in. // ... }
Objective-C
if ([FIRAuth auth].currentUser) { // User is signed in. // ... } else { // No user is signed in. // ... }
Pobieranie profilu użytkownika
Aby uzyskać informacje o profilu użytkownika, użyj właściwości instancji
FIRUser
Przykład:
Swift
let user = Auth.auth().currentUser if let user = user { // 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 getTokenWithCompletion:completion: instead. let uid = user.uid let email = user.email let photoURL = user.photoURL var multiFactorString = "MultiFactor: " for info in user.multiFactor.enrolledFactors { multiFactorString += info.displayName ?? "[DispayName]" multiFactorString += " " } // ... }
Objective-C
FIRUser *user = [FIRAuth auth].currentUser; if (user) { // 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 getTokenWithCompletion:completion: instead. NSString *email = user.email; NSString *uid = user.uid; NSMutableString *multiFactorString = [NSMutableString stringWithFormat:@"MultiFactor: "]; for (FIRMultiFactorInfo *info in user.multiFactor.enrolledFactors) { [multiFactorString appendString:info.displayName]; [multiFactorString appendString:@" "]; } NSURL *photoURL = user.photoURL; // ... }
Uzyskiwanie informacji o profilu użytkownika specyficznych dla dostawcy
Aby pobrać informacje profilowe pobrane od dostawców logowania połączonych z
użytkownika, należy użyć właściwości providerData
. Przykład:
Swift
let userInfo = Auth.auth().currentUser?.providerData[indexPath.row] cell?.textLabel?.text = userInfo?.providerID // Provider-specific UID cell?.detailTextLabel?.text = userInfo?.uid
Objective-C
id<FIRUserInfo> userInfo = [FIRAuth auth].currentUser.providerData[indexPath.row]; cell.textLabel.text = [userInfo providerID]; // Provider-specific UID cell.detailTextLabel.text = [userInfo uid];
Aktualizowanie profilu użytkownika
Możesz aktualizować podstawowe informacje o profilu użytkownika – jego wyświetlaną nazwę.
i adres URL zdjęcia profilowego – z klasą UserProfileChangeRequest
. Przykład:
Swift
let changeRequest = Auth.auth().currentUser?.createProfileChangeRequest() changeRequest?.displayName = displayName changeRequest?.commitChanges { error in // ... }
Objective-C
FIRUserProfileChangeRequest *changeRequest = [[FIRAuth auth].currentUser profileChangeRequest]; changeRequest.displayName = userInput; [changeRequest commitChangesWithCompletion:^(NSError *_Nullable error) { // ... }];
Ustawianie adresu e-mail użytkownika
Adres e-mail użytkownika możesz skonfigurować za pomocą metody updateEmail
.
Przykład:
Swift
Auth.auth().currentUser?.updateEmail(to: email) { error in // ... }
Objective-C
[[FIRAuth auth].currentUser updateEmail:userInput completion:^(NSError *_Nullable error) { // ... }];
Wysyłanie e-maila weryfikacyjnego do użytkownika
Możesz wysłać e-maila weryfikacyjnego do użytkownika z
Metoda sendEmailVerificationWithCompletion:
. Przykład:
Swift
Auth.auth().currentUser?.sendEmailVerification { error in // ... }
Objective-C
[[FIRAuth auth].currentUser sendEmailVerificationWithCompletion:^(NSError *_Nullable error) { // ... }];
Możesz dostosować szablon e-maila używany w sekcji Uwierzytelnianie w konsoli Firebase, na stronie Szablony e-maili. Zobacz Szablony e-maili w Centrum pomocy Firebase.
Można również przekazywać stan za pomocą dalej – URL – aby przekierować z powrotem do aplikacji podczas wysyłania e-maila weryfikacyjnego.
Możesz też zlokalizować e-maila weryfikacyjnego, aktualizując język. w instancji Auth przed wysłaniem e-maila. Przykład:
Swift
Auth.auth().languageCode = "fr" // To apply the default app language instead of explicitly setting it. // Auth.auth().useAppLanguage()
Objective-C
[FIRAuth auth].languageCode = @"fr"; // To apply the default app language instead of explicitly setting it. // [[FIRAuth auth] useAppLanguage];
Ustawianie hasła użytkownika
Hasło użytkownika możesz ustawić za pomocą metody updatePassword
. Przykład:
Swift
Auth.auth().currentUser?.updatePassword(to: password) { error in // ... }
Objective-C
[[FIRAuth auth].currentUser updatePassword:userInput completion:^(NSError *_Nullable error) { // ... }];
Wyślij e-maila do resetowania hasła
Możesz wysłać do użytkownika e-maila z linkiem do zresetowania hasła
Metoda sendPasswordReset
. Przykład:
Swift
Auth.auth().sendPasswordReset(withEmail: email) { error in // ... }
Objective-C
[[FIRAuth auth] sendPasswordResetWithEmail:userInput completion:^(NSError *_Nullable error) { // ... }];
Możesz dostosować szablon e-maila używany w sekcji Uwierzytelnianie w konsoli Firebase, na stronie Szablony e-maili. Zobacz Szablony e-maili w Centrum pomocy Firebase.
Można również przekazywać stan za pomocą dalej – URL – aby przekierować z powrotem do aplikacji podczas wysyłania e-maila do resetowania hasła.
Możesz też zlokalizować e-mail dotyczący resetowania hasła, aktualizując język w instancji Auth przed wysłaniem e-maila. Przykład:
Swift
Auth.auth().languageCode = "fr" // To apply the default app language instead of explicitly setting it. // Auth.auth().useAppLanguage()
Objective-C
[FIRAuth auth].languageCode = @"fr"; // To apply the default app language instead of explicitly setting it. // [[FIRAuth auth] useAppLanguage];
Możesz też wysyłać e-maile dotyczące resetowania hasła za pomocą konsoli Firebase.
Usuwanie konta użytkownika
Konto użytkownika możesz usunąć za pomocą metody delete
. Przykład:
Swift
let user = Auth.auth().currentUser
user?.delete { error in
if let error = error {
// An error happened.
} else {
// Account deleted.
}
}
Objective-C
FIRUser *user = [FIRAuth auth].currentUser;
[user deleteWithCompletion:^(NSError *_Nullable error) {
if (error) {
// An error happened.
} else {
// Account deleted.
}
}];
Użytkowników możesz też usuwać z sekcji Uwierzytelnianie Firebase na stronie Użytkownicy.
.Ponowne uwierzytelnianie użytkownika
Niektóre działania związane z bezpieczeństwem, takie jak:
usunięciu konta,
ustawienie głównego adresu e-mail oraz
zmianę hasła – użytkownik musi mieć
niedawno się zalogowałeś(-aś). Jeśli wykonasz jedną z tych czynności, a użytkownik się zaloguje
zbyt dawno temu, działanie kończy się niepowodzeniem, gdy FIRAuthErrorCodeCredentialTooOld
. W takim przypadku ponownie uwierzytelnij użytkownika, uzyskując nowe dane logowania.
dane logowania użytkownika i przekazując je do usługi reauthenticate
. Przykład:
Swift
let user = Auth.auth().currentUser
var credential: AuthCredential
// Prompt the user to re-provide their sign-in credentials
user?.reauthenticate(with: credential) { error in
if let error = error {
// An error happened.
} else {
// User re-authenticated.
}
}
Objective-C
FIRUser *user = [FIRAuth auth].currentUser;
FIRAuthCredential *credential;
// Prompt the user to re-provide their sign-in credentials
[user reauthenticateWithCredential:credential completion:^(NSError *_Nullable error) {
if (error) {
// An error happened.
} else {
// User re-authenticated.
}
}];
Importowanie kont użytkowników
Konta użytkowników możesz importować z pliku do projektu Firebase za pomocą
Polecenie auth:import
w interfejsie wiersza poleceń Firebase. Przykład:
firebase auth:import users.json --hash-algo=scrypt --rounds=8 --mem-cost=14