Last active
February 22, 2020 16:05
-
-
Save gyugyu90/a792d02a532502286173c352deaedd43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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