Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Nachdem sich ein Nutzer über Google angemeldet hat, können Sie sein allgemeines Profil abrufen
Informationen: Name, URL des Profilbilds und E-Mail-Adresse.
Sobald der Nutzer den Zugriff auf die von Ihnen angeforderten Bereiche authentifiziert und autorisiert hat,
können Sie über das GIDGoogleUser-Objekt auf Nutzerprofilinformationen zugreifen.
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)
}
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 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."]]],[]]