Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Gdy użytkownik zaloguje się przez Google, możesz uzyskać jego podstawowy profil
informacje: imię i nazwisko, adres URL zdjęcia profilowego i adres e-mail.
Gdy użytkownik uwierzytelni i autoryzuje dostęp do żądanych zakresów,
dostęp do informacji o profilu użytkownika można uzyskać za pomocą obiektu GIDGoogleUser.
Swift
GIDSignIn.sharedInstance.signIn(withPresenting: self) { signInResult, error in
guard error == nil else { return }
guard let signInResult = signInResult else { return }
let user = signInResult.user
let emailAddress = user.profile?.email
let fullName = user.profile?.name
let givenName = user.profile?.givenName
let familyName = user.profile?.familyName
let profilePicUrl = user.profile?.imageURL(withDimension: 320)
}
[[["Łatwo zrozumieć","easyToUnderstand","thumb-up"],["Rozwiązało to mój problem","solvedMyProblem","thumb-up"],["Inne","otherUp","thumb-up"]],[["Brak potrzebnych mi informacji","missingTheInformationINeed","thumb-down"],["Zbyt skomplikowane / zbyt wiele czynności do wykonania","tooComplicatedTooManySteps","thumb-down"],["Nieaktualne treści","outOfDate","thumb-down"],["Problem z tłumaczeniem","translationIssue","thumb-down"],["Problem z przykładami/kodem","samplesCodeIssue","thumb-down"],["Inne","otherDown","thumb-down"]],["Ostatnia aktualizacja: 2024-09-12 UTC."],[[["After signing in with Google, you can access the user's basic profile information, such as their name, email address, and profile image URL."],["You need to download dependencies, configure your Xcode project, and integrate Google Sign-In before retrieving user information."],["Access user profile data like email, name, and profile picture URL using the `GIDGoogleUser` object after successful authentication."],["**Important:** Use ID tokens for backend server communication, instead of relying on user profile data or `userId` for security purposes."]]],[]]