Open moisesgzmn opened 1 year ago
When i try to log in with apple, i get that error. My code:
async loginWithApple(): Promise<void> { try { const appleCredential: AppleSignInResponse = await SignInWithApple.signin({ requestedScopes: [ ASAuthorizationAppleIDRequest.ASAuthorizationScopeFullName, ASAuthorizationAppleIDRequest.ASAuthorizationScopeEmail ] }); console.log({ appleCredential }); alert(JSON.stringify(appleCredential)) } catch (error) { console.log(error); } }
When i try to log in with apple, i get that error. My code: