error 7001(simulator) or 7030(device)

I am trying to add sign in with Apple to my IOS app using Swift, using the latest versions of xcode and IOS13.2


I get a similar error when running on the simulator and on a device, only the error number changes.


Error:


Error Domain=AKAuthenticationError Code=-7030 "(null)"


I can't seem to find a list of errors or any. other questions on this forum or stackoverflow which have answers which have worked for me.


Can anyone help?


Thanks

Gordon

From experimenting with "Sign In With Apple" :

Error Code -7030 is usually provided if there are no valid credential provided (like an empty string). And this will result in the completion block of `getCredentialState(forUserID:)` returning an error and a `.notFound`


However the simulators seems to have a bug where they will always return -7001 whether you provide a valid identifier or not. So I wouldn't rely on them just yet for debugging.

error 7001(simulator) or 7030(device)
 
 
Q