Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Last active February 22, 2020 16:05
Show Gist options
  • Save gyugyu90/a792d02a532502286173c352deaedd43 to your computer and use it in GitHub Desktop.
Save gyugyu90/a792d02a532502286173c352deaedd43 to your computer and use it in GitHub Desktop.
if let credential = authorization.credential as? ASAuthorizationAppleIDCredential {
let userEmail = credential.email ?? ""
let familyName = credential.fullName?.familyName ?? ""
let givenName = credential.fullName?.givenName ?? ""
let userIdentifier = credential.user
// 가입/로그인 로직...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment