Skip to content

Instantly share code, notes, and snippets.

@cardoso
Created May 1, 2020 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cardoso/bc5acbbce6f2e4cfce02fa52457d161b to your computer and use it in GitHub Desktop.
Save cardoso/bc5acbbce6f2e4cfce02fa52457d161b to your computer and use it in GitHub Desktop.
let email;
try {
const response = await appleAuth.accessToken(appleAuthCode);
email = jwt.decode(response.id_token).email;
console.log(`[INFO] User identity confirmed by Apple.`)
} catch {
console.log(`[ERROR] Could not confirm user identity with Apple.`);
res.sendStatus(401);
return;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment