Results 2 comments of Pietro

We have also experience the same issue. Is there any update on this topic? it starts becoming a bigger problem

(void)authorizationController:(ASAuthorizationController *)controller didCompleteWithAuthorization:(ASAuthorization *)authorization API_AVAILABLE(ios(13.0)) { ASAuthorizationAppleIDCredential* appleIDCredential = authorization.credential; NSString *idToken = [NSString stringWithUTF8String:[appleIDCredential.identityToken bytes]]; FIROAuthCredential *credential = [FIROAuthProvider credentialWithProviderID:@"apple.com" IDToken:idToken accessToken:nil]; _providerSignInCompletion(credential, nil, nil, nil); } When idToken...