Sign in with Apple suddenly fails with Error 7003

Hello, our Sign in with Apple Button no longer works and throws an 7003 error. It worked a few days ago but suddenly fails.

Any ideas how to fix this? Thanks in advance!

plist:

<dict>
	<key>com.apple.developer.applesignin</key>
	<array>
		<string>Default</string>
	</array>
...

Code:

  var body: some View {
    VStack {
      SignInWithAppleButton(.signUp) { request in
        request.requestedScopes = [.fullName, .email]
      } onCompletion: { result in
        switch result {
        case .success(let authResults):
          handleSuccess(authorization: authResults)
        case .failure(let error):
          self.credentialFailure = true
          self.errorMessage = .appleSignInError
          logger.error("SIWA login failure: \(error)")
        }
      }
      .signInWithAppleButtonStyle(.white)
      .cornerRadius(GlobalValues.cornerRadius)
    }
  }

Error:

Authorization failed: Error Domain=AKAuthenticationError Code=-7003 "(null)" UserInfo={AKClientBundleID=com.our.app}
ASAuthorizationController credential request failed with error: Error Domain=com.apple.AuthenticationServices.AuthorizationError Code=1001 "(null)"
SIWA login failure: Error Domain=com.apple.AuthenticationServices.AuthorizationError Code=1001 "(null)"

I have the exact same problem, it was working fine till yesterday but suddenly broke without any changes in the app or the backend

hi @MikaHoff , did you find a solution for this?

In my case I noticed that if I use a difference "team" then I don't get this error and sign in works as expected but if I use my org team it stops working (which was working til day before).

This behavior is the same even when trying sample app from apple https://developer.apple.com/documentation/sign_in_with_apple/implementing_user_authentication_with_sign_in_with_apple ie not working with org team but working with individual developer account

Hi @MikaHoff,

The -7003 error signifies a user cancellation and occurs when a user cancels the auth flow. If this occurs without user interaction, please submit a report via Feedback Assistant by following the steps listed below:

Gathering required information for troubleshooting Sign in with Apple authorization and token requests https://developer.apple.com/forums/thread/762831

Cheers,

Paris X Pinkney |  WWDR | DTS Engineer

We run in this error a couple of times now. The solution was always to wait a couple of days until it works again. It usually occurs when enabling the SIWA in the developer portal or changing its attributes.

So my solution would be:

  • grab a coffee
  • visit some friends
  • come back

cheers

This is happening again at a larger scale, it seems

Sign in with Apple suddenly fails with Error 7003
 
 
Q