Last active
May 19, 2024 15:27
-
-
Save ArnauMrJeff/cc952aa105829afecab6ff7561a503bf to your computer and use it in GitHub Desktop.
Apple ID Sign In: AppleAuth First Step
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
private void appleAuth(String authorizationCodeSentByApp, String keyIdentifierSentByApp) throws Exception { | |
var token = generateJWT(); | |
//Http Requests Client | |
var tokenResponse = httpClient.getTokenResponse("CLIENT_ID", token, "authorization_code", authorizationCodeSentByApp); | |
var idToken = tokenResponse.getIdToken(); | |
// Next Steps | |
} |
Where is
httpClient
defined?
Exactly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where is
httpClient
defined?