-
Apple rejected my iOS App because of a missing Apple ID revoke when users delete their account in my app. Firebase itself seems to work on a solution here: firebase/firebase-ios-sdk#9906 Thanks for any help! |
Beta Was this translation helpful? Give feedback.
Answered by
robingenz
Dec 13, 2022
Replies: 1 comment 1 reply
-
The const signInWithApple = async () => {
const result = await FirebaseAuthentication.signInWithApple();
console.log(result.credential?.authorizationCode);
}; |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
phoheisel
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
authorizationCode
is returned on sign-in: