Recupero delle informazioni del profilo in corso...
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Dopo che un utente ha eseguito l'accesso con Google, puoi ottenere il suo profilo di base
informazioni: nome, URL dell'immagine del profilo e indirizzo email.
Dopo che l'utente avrà autenticato e autorizzato l'accesso agli ambiti da te richiesti,
puoi accedere alle informazioni del profilo utente tramite l'oggetto 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)
}
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 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."]]],[]]