Sign in with Apple: "Sign Up Not Completed" for every App ID in our team — framework returns canceled (1001) with empty userInfo

Sign in with Apple fails for every App ID in our team (K9UFUZF2XW), on every device and every Apple ID we have tried.

The system sheet appears, the user authenticates successfully, the sheet then shows "Sign Up Not Completed", and no credential is returned. The failure happens after authentication — this is not a client-side rejection.

I have spent several days isolating this and have ruled out everything on my side. Posting the full evidence in case an Apple engineer can look at the server-side state for our team, and in case it helps others hitting the same wall.

WHAT THE FRAMEWORK ACTUALLY RETURNS

The client library we use (expo-apple-authentication) discards the original NSError, so I patched its native layer to surface the raw error verbatim. This is what ASAuthorizationController hands back to didCompleteWithError, immediately after the user authenticated and the sheet displayed "Sign Up Not Completed":

ASAuthorizationError .canceled (rawValue = 1001) domain = com.apple.AuthenticationServices.AuthorizationError code = 1001 desc = The operation couldn't be completed. (com.apple.AuthenticationServices.AuthorizationError, error 1001) userInfo: <empty> NSUnderlyingError: <none>

So the framework reports a user cancellation that never happened, with a completely empty userInfo and no underlying error. There is no diagnostic information on the client at all — I cannot debug this any further from my side, because the information does not exist there.

Note: the same failure surfaces as a different error code depending on the client library version — .unknown (1000) with the older version, .canceled (1001) with the current one. The user-visible behaviour ("Sign Up Not Completed") is identical in both. So the error code is not a reliable signal here.

WHAT I RULED OUT

  1. Not the App ID. I created a brand-new App ID (kz.auraai.ios) with Sign in with Apple enabled as a primary App ID, built a fresh binary, tested on the same device with the same Apple ID — identical failure. Two independent App IDs in the same team fail the same way.

  2. Not the entitlement. Verified inside the signed binary, not just in the portal:

application-identifier = K9UFUZF2XW.kz.auraai.ios com.apple.developer.applesignin = ["Default"]

I also tried the workaround suggested elsewhere on these forums (removing the entitlement while keeping the capability in the portal). That made it strictly worse: iOS then rejects the request instantly, without showing the sheet at all. Which confirms iOS reads the entitlement correctly, the sheet works, and the user authenticates — the failure is downstream of all of that.

  1. No stray or wildcard App IDs. A commonly cited cause is other App IDs in the team lacking the entitlement. I enumerated the whole team via the App Store Connect API: it contains exactly two App IDs, both with APPLE_ID_AUTH = PRIMARY_APP_CONSENT. No wildcard identifiers exist.

  2. Not the Apple ID, the device, or the iOS version. The same Apple ID, on the same device, with the same iOS, signs in successfully through another app belonging to a different team (Expo Go, host.exp.Exponent) — a valid identity token is returned. A second, unrelated Apple ID on another device fails in my app in exactly the same way. So this is not scoped to one account: it affects every user of the app.

  3. Agreements and membership are in good standing. Program License Agreement accepted 30 June 2026; Developer Agreement accepted 26 June 2026; membership active.

  4. Both distribution types fail. TestFlight and ad-hoc.

WHAT IS LEFT

After all of the above, the only variable that differs between the working case (a different team's app, same device, same Apple ID) and the failing case (my app) is the Apple Developer team itself.

This exact signature — sheet renders fully, final server submit fails, "Sign Up Not Completed", delegate reports canceled with no userInfo, not reproducible in other apps on the same device — is documented in thread 122458 ("Error: Sign-Up Not Completed"). In that case it affected multiple developers, including Apple's own sample app, and was ultimately resolved by Apple on the server side, with a recurrence reported in June 2025.

THE ASK

Could someone from Apple check the server-side Sign in with Apple registration for team K9UFUZF2XW (App IDs kz.auraai.app and kz.auraai.ios)?

I am not looking for configuration advice — I have exhausted the client side and there is nothing left to configure. This looks like the same server-side state that was fixed in the referenced cases.

Feedback Assistant: FB23716661 (includes sysdiagnose with the Accounts/AuthKit profile, timestamp, and video of the failure).

This is currently blocking us: because Sign in with Apple works for none of our users, guideline 4.8 prevents us from offering Google Sign-In, so we are shipping with email-only login.

Happy to provide the binary, entitlements dump, or a fresh sysdiagnose on request.

Same issue, same signature, independent team — adding as a data point that this is an active server-side recurrence.

Team Z4ZFKAR4DZ (enrolled 2026-07-13, Sign in with Apple capability first enabled 2026-07-16): every client of the team fails first-time sign-up with "Sign Up Not Completed" → ASAuthorizationError 1001 with empty userInfo. Reproduced across 3 devices, 2 independent Apple IDs, 2 App IDs (production app + a clean-room probe created just to test this), scoped and scope-less requests, Xcode and TestFlight signing. Entitlement verified inside the embedded provisioning profile; agreements Active; a first-time SIWA sign-up into a third-party app succeeds on the same device/Apple ID during the failure window.

One detail that may help triage: with the Accounts logging profile installed, akd shows the GSA sign-up SRP exchange returning HTTP 200 with the server proof missing — AppleIDAuthSupport: setError: 2:M2 missing (bad password), account fields all null — then akd -7003. Same signature as thread 790323 (June 2025, self-resolved after 11 days) and consistent with the officially acknowledged June 18–23 2025 incident (thread 790827).

Filed as FB23826495 with sysdiagnose, screen recording, and the akd capture.

We are experiencing the same issue on Apple Developer Team A9FLT346MM.

For both com.shamrocksgames.thuru304 and com.shamrocksgames.turup29, the native Sign in with Apple sheet opens correctly, Share My Email is selected, Face ID completes successfully, and Apple then displays “Sign-Up Not Completed” without returning a credential.

Both App IDs are explicit primary App IDs with Sign in with Apple enabled. The signed entitlements and embedded provisioning profiles have also been verified. No authentication request reaches our backend.

Feedback submitted: FB23876773

Same issue here. Team ID GW7XA5CX69, bundle com.learnbybits.app (App ID registered July 2026). Entitlement, App Store profile, APPLE_ID_AUTH with primary-app consent, and agreements all verified; capability off/on toggle did nothing. Apple sample code signed with this App ID reproduces it. akd logs show AKSQLError -6003 "No applications were found with the provided Client ID" followed by SRP "M2 missing (bad password)". Also reproduced by App Review (2.1(a) rejection). Filed as FB24029082 with the full log archive from the repro attached.

Hi @permsdenied, @a_tuna, @ShamrocksGames, @learnbybits,

Thank you for your patience. Please confirm if the reported issue has been resolved. If so, please also reply to your existing bug reports and close, as needed.

Best,

Paris X Pinkney |  WWDR | DTS Engineer

Confirmed resolved for Team ID GW7XA5CX69 / com.learnbybits.app. Sign in with Apple now completes on-device with no changes on our side — the same build and configuration that previously failed with AKSQLError -6003 in the akd logs (reproduced with Apple's own sample code). Verified end-to-end July 31, 2026, including Hide My Email. I'm updating and closing FB24029082 as requested. Thank you for the server-side fix.

Same issue, same signature, another data point. Team 73QR7KF5X4, bundle com.makeitsync.app (App ID D9YKJ6CHVZ). The native sheet renders, Face ID completes, then "Sign-Up Not Completed"; the app receives ASAuthorizationError 1000/1001 with empty userInfo. Entitlement verified inside the signed binary; capability enabled with primary app consent; agreements accepted; capability off/on toggle changed nothing. A first-time Sign in with Apple sign-up in an unrelated App Store app succeeds on the same device and Apple Account during the failure window. Also reproduced by App Review (2.1(a) rejection). Filed as FB24157819 with sysdiagnose captured immediately after a failed attempt. Could you please check the server-side Sign in with Apple registration for this team as well?

Same failure mode here, on a different team — adding a data point in case it helps narrow down the server side.

Team W2V4HBXWLJ · App ID fr.animapulse (Apple ID 6794420038), created 24 July 2026, never released (still in Prepare for Submission).

Symptom — identical to the original report. The system sheet appears, authentication succeeds (Face ID accepted), the sheet then displays "Sign Up Not Completed", and ASAuthorizationController reports:

ASAuthorizationError.canceled (rawValue = 1001)
com.apple.AuthenticationServices.AuthorizationError
"The operation couldn't be completed."
userInfo: <empty>

The user never cancelled. Zero Sign in with Apple requests reach our identity provider, so the authorization is abandoned before any token exchange. Google sign-in, which goes through the same native id-token path in the same app, works.

Client configuration verified — the App ID has the Sign In with Apple capability enabled and is configured as a primary App ID (PRIMARY_APP_CONSENT). The signed binary carries com.apple.developer.applesignin = [Default], the embedded provisioning profile grants that same entitlement, and the distribution profile is active.

Controlled experiment (3 August 2026) — to isolate the variable, we created a throwaway App ID fr.animapulse.essai that same day (default configuration, Sign In with Apple as a primary App ID), shipped the same binary under it through internal TestFlight, and tested it on the same device and Apple Account while watching our identity provider's logs live. Result: identical failure — sheet completes authentication, then "Sign Up Not Completed", 1001, zero requests server-side. On that same device and Apple Account, third-party App Store apps using Sign in with Apple work normally. Two App IDs of our team — one of them an hour old — fail where every other team's apps succeed.

Feedback Assistant: FB24150280

Same failure here, on a newly enrolled team. A sysdiagnose taken with the Accounts/AuthKit profile shows the same backend lookup failure.

Team ID: LHK4C7MAP5 (Individual, enrolled 2026-08-04) Bundle ID: com.tisza.app (App ID CR72WGH337) Sign in with Apple is enabled as a PRIMARY App ID — verified via the App Store Connect API (APPLE_ID_AUTH / APPLE_ID_AUTH_APP_CONSENT = PRIMARY_APP_CONSENT). Only one Bundle ID exists in the team; no wildcard and no grouped App IDs. Device: iPhone, iOS 26.5.2 (23F84), TestFlight build.

Feedback Assistant: FB24195637 (sysdiagnose attached)

The log confirms the entitlement is read correctly from our signed binary, and that the failure occurs only in Apple's backend team lookup:

akd [authkit:siwa] Client has default access level in SiwA entitlement akd [authkit:siwa] Setting clientID to com.tisza.app akd [authkit:siwa] Setting teamID to LHK4C7MAP5 akd [authkit:siwa] Fetching developer team for client with ID: com.tisza.app akd [authkit:siwa] Encountered error while fetching developer team: Error Domain=AKSQLError Code=-6003 "(null)" akd [authkit:siwa] No applications were found with the provided Client ID: com.tisza.app -> AKAuthenticationError -7003; the sheet shows "Sign Up Not Completed"

App Review reproduced this on their own device and Apple Account, and rejected our submission under Guideline 2.1(a).

Same issue here — new App ID not recognized by the auth backend.

Team ID: 59NYXF3PWY Bundle ID: com.ara.zelosa Feedback: FB24199527

akd log confirms the same signature as others in this thread: AKSQLError Code=-6003 → "No applications were found with the provided Client ID: com.ara.zelosa" → AKAuthenticationError -7003 → "Sign-Up Not Completed" in the sheet.

Entitlements verified present in both the signed binary and embedded provisioning profile of the distributed IPA. Same Apple ID works with Sign in with Apple in other apps. We were rejected in App Review (Guideline 2.1(a)) because of this. Would appreciate a backend fix — thank you.

Hello

i am facing the same weird issue with my team ID X622TYTSYA

What should we do ?

@Paris X Pinkney — same issue, still present, on a team not yet in the list.

Team ID: X622TYTSYA · Bundle ID: it.dinamodigitale.storya

Captured on device 2026-08-07 (iPhone 16e, iOS 26.5.2). The akd log shows exactly the signature you identified in this thread:

12:02:36.085 akd Fetching developer team for client with ID: <private> 12:02:36.088 akd Encountered error while fetching developer team: Error Domain=AKSQLError Code=-6003 12:02:36.088 akd No applications were found with the provided Client ID: <private>

This appears seven seconds before the downstream failure, so the team lookup is what fails first:

12:02:43 akd ThirdPartyDeviceDataResponseHandler fromResponse serverProvidedData is nil 12:02:43 akd SRP authentication with server failed! Error Domain=com.apple.AppleIDAuthSupport Code=2 NSUnderlyingError = AKAuthenticationServerError Code=-24000 12:02:46 Runner(AuthKit) Authorization failed: AKAuthenticationError Code=-7003

The HTTP exchange itself succeeds — response_status=200, 1141 bytes — so the rejection is inside the payload.

Reproduced across every variable we can change: two App IDs, including one created 20 minutes before the test with the capability enabled at creation; two distribution channels, TestFlight and Development; two devices and two different Apple Accounts; two independent akd instances; and a minimal request with no scopes and no nonce. The failing response is exactly 1141 bytes every time.

Control, same device and account, 15 minutes earlier, handled by the same akd process instance: a third-party App Store app from a different team completed a first-time sign-up normally — Parsing server provided Data, error: (null). No -6003.

Configuration verified: APPLE_ID_AUTH with PRIMARY_APP_CONSENT, nothing grouped; both profiles and the signed binary carry com.apple.developer.applesignin = Default; capability enabled for eight days, past the 24-hour worst case from thread 789697; no pending agreements; device not supervised, no MDM.

Could you apply the same server-side team-registration fix to X622TYTSYA?

We are still reproducing the same failure on MeetRackets.

Team ID: QWH2C4XE3J

Primary App ID: com.frantor.meetrackets (resource ID 486P895R59)

Services ID: com.frantor.meetrackets.web (resource ID Q6SZ3ZC4V3)

Feedback Assistant: FB24225167

This is the Sign in with Apple JS/PWA flow from https://dev.meetrackets.com. The Apple consent UI loads and recognizes MeetRackets Web, but the final submit fails inside appleid.apple.com before our callback is reached. Desktop DevTools shows Apple-internal authorization requests returning HTTP 409 followed by HTTP 403. We reproduced it with two independent Apple Accounts on different physical iOS devices, including a first-time signup. Our DEV backend and database receive no authorization code, identity token, or Apple identity.

The Services ID, primary association, domains, exact return URL, APPLE_ID_AUTH / PRIMARY_APP_CONSENT, TLS, and request parameters have been rechecked. Could Apple please inspect and re-provision the server-side Sign in with Apple registration for this Team/App ID/Services ID?

Adding another affected team to this thread:

Team ID: FRL3DTJQ62 — App ID com.dancuedigital.statsnap (TestFlight builds)

Identical signature to the reports above, captured via sysdiagnose on 2026-08-08:

  • Native sheet renders, Face ID completes, then "Sign Up Not Completed"
  • akd log: Encountered error while fetching developer team: Error Domain=AKSQLError Code=-6003, followed by No applications were found with the provided Client ID: com.dancuedigital.statsnap → AKAuthenticationError -7003
  • GSA SRP sign-up exchange returns HTTP 200 with server proof missing (M2 missing); underlying server response is Invalid client / -24000
  • Reproduces on two devices (iPhone + iPad) with two different Apple IDs; same Apple IDs sign in fine in other apps
  • Ruled out client side: capability active on the App ID (verified via ASC API), signed binary and provisioning profile both carry com.apple.developer.applesignin = ["Default"], bundle ID verified. Capability first enabled 2026-08-03, re-toggled

2026-08-09 — no change.

  • The public authorize endpoint also returns invalid_client for this bundle ID, while known-good SIWA apps' bundle IDs pass, consistent with the registration never reaching the auth servers.

Filed as FB24228227 (sysdiagnose attached). Requesting the same server-side team registration fix applied to the teams above. Happy to verify immediately once re-provisioned.

Confirming resolved for Team FRL3DTJQ62 / com.dancuedigital.statsnap. Sign in with Apple now completes on device as of Aug 12 with no changes on our side — the same TestFlight build that previously failed with the AKSQLError -6003 / "No applications were found with the provided Client ID" signature now works end-to-end. The public authorize endpoint also stopped returning invalid_client for this client_id (it had, continuously, since Aug 8). FB24228227 updated and closed as requested. Thank you for the server-side fix. For teams still waiting: no client-side changes were needed — the same build simply started working once the registration was repaired.

Hello,

@Paris X Pinkney — still failing for team W2V4HBXWLJ as of 13 August 2026. Device logs now captured; FB24150280 updated with the sysdiagnose.

Bundle ID fr.animapulse, TestFlight build 1.0.0 (24), iPhone on iOS 26.6 (23G71). Six attempts between 19:50 and 20:05 CEST, all identical.

With the Accounts/AuthKit profile installed, the GSA response is explicit — your server answers HTTP 200 with no server proof and says why:

AppleIDAuthSupport: setError: 2:M2 missing (bad password)

ThirdPartyDeviceDataResponseHandler fromResponse serverProvidedData is nil

SRP authentication with server failed! Status={

ec = "-24000";

em = "Invalid client.";

hsc = 200;

ptxid = "7908aa53-b737-4725-a791-8fdbabb0c960";

}

→ AKAuthenticationError -7003, UserInfo={AKClientBundleID=fr.animapulse}

→ sheet shows "Sign Up Not Completed", app receives 1001

The six attempts carry six distinct ptxid values, all with ec=-24000 / em="Invalid client."; they are in the Feedback if that helps locate them server-side.

A control falls out of the same log: five seconds before the first failure, the same akd process on the same Apple Account completed two GSA exchanges with ec=0. Reachability, credentials and SRP are fine — only the exchange carrying our client_id is rejected. Consistent with that, the public appleid.apple.com/auth/authorize endpoint returns invalid_client for fr.animapulse — the same wording the device log receives.

One note that may help triage, offered tentatively: the AKSQLError -6003 line several of us have quoted comes, in our capture, from a query against the on-device database /var/mobile/Library/Application Support/com.apple.akd/authorization.db, and the flow continues past it to display the sheet. We suspect it is a first-authorization cache miss rather than the cause, and that the decisive event is the -24000 / "Invalid client." GSA response.

Configuration re-verified today via the App Store Connect API: APPLE_ID_AUTH / PRIMARY_APP_CONSENT on fr.animapulse and on our throwaway App ID fr.animapulse.essai, both failing identically; signed binary and embedded profile both carry com.apple.developer.applesignin = ["Default"].

Could the same server-side re-provisioning applied to GW7XA5CX69 and FRL3DTJQ62 be applied to W2V4HBXWLJ?

Happy to verify immediately.

Still reproducing this on the latest TestFlight build as of Aug 11. Team ID: NMRYY2T77C · Bundle ID: golf.golfathletics.rtz · Feedback: FB24218181 Same signature as others here: sheet shows "Sign-Up Not Completed" before any credential is issued; all client-side causes eliminated (capability reset with PRIMARY_APP_CONSENT, fresh provisioning profile and distribution cert, entitlement verified in the signed binary). Could the same server-side team-registration fix be applied to NMRYY2T77C?

Adding another affected team, plus a server-side transaction ID that may help triage.

Team ID: 3255U9X75G

App ID: com.nazacheres.wbando (also com.nazacheres.wbando.dev - the team's only two identifiers, both APPLE_ID_AUTH / PRIMARY_APP_CONSENT)

Feedback Assistant: FB24238948 (sysdiagnose with the Accounts/AuthKit profile attached). Developer Support case: 20000135878194.

Capability enabled 2026-08-05; failing since 2026-08-06; still failing 2026-08-12.

Same signature as the rest of the thread - the sheet renders, authentication succeeds, "Sign Up Not Completed", ASAuthorizationError 1001 with null userInfo, and in akd: Encountered error while fetching developer team: Error Domain=AKSQLError Code=-6003, then No applications were found with the provided Client ID.

One detail I have not seen posted yet: with the Accounts/AuthKit profile installed, the GSA response body is readable and carries Apple's own transaction identifier. Captured 2026-08-09 23:28:09 CEST:

ec = "-24009"; ed = ""; em = "Invalid client."; hsc = 200; ptxid = "1b7e78e3-79da-4861-8f3b-23c9a2d14bd8";

followed by AppleIDAuthSupport: setError: 2:M2 missing (bad password) and SRP authentication with server failed! (com.apple.AppleIDAuthSupport Code=2).

That ptxid should let someone at Apple pull this exact rejection from the server side rather than inferring it from client logs. Note the code here is -24009 rather than the -24000 reported by moty66 and DanCue - same "Invalid client." message, so these look like variants of the same registration failure.

Client side verified the same way as everyone else in this thread: APPLE_ID_AUTH / PRIMARY_APP_CONSENT read back from the App Store Connect API, com.apple.developer.applesignin present in both the signed binary and the embedded provisioning profile, no app extensions, no wildcard or grouped identifiers, no pending agreements, and the same Apple Accounts sign in fine to other teams' apps on the same devices. Reproduces on physical iPhones for external TestFlight testers and on an Apple Silicon Mac running the same build.

Paris X Pinkney - could the same server-side team registration fix be applied to 3255U9X75G? Happy to re-test and confirm immediately.

Also confirming permsdenied's reading of 4.8 for anyone else weighing options: we are taking the same route and shipping without Google Sign-In so the guideline no longer applies, rather than waiting on the fix.

Same failure signature, another affected team — adding a data point and requesting the same server-side team-registration fix.

Team ID: NY3P8QZG56 Bundle ID: kr.canalwalk.app (App Store app ID 6800445181), App ID registered 2026-08-16, Sign in with Apple enabled the same day. Still in Prepare for Submission. Device: iPhone 15 (iPhone15,4), iOS 17.4.1 (21E619), TestFlight build 0.3.0 (18). Feedback Assistant: FB24373549 (sysdiagnose + Accounts/AuthKit log archives attached).

Symptom: The native Sign in with Apple sheet renders, Face ID completes, then the sheet fails; no credential is returned to the app. No authorization request ever reaches our backend.

akd shows the same backend team-lookup failure reported throughout this thread:

akd [authkit:siwa] Setting clientID to <kr.canalwalk.app> akd [authkit:siwa] Setting teamID to <NY3P8QZG56> akd [authkit:siwa] Fetching developer team for client with ID: <kr.canalwalk.app> akd [authkit:siwa] Encountered error while fetching developer team: Error Domain=AKSQLError Code=-6003 akd [authkit:siwa] No applications were found with the provided Client ID: <kr.canalwalk.app>

A few seconds later the SRP submit fails with "M2 missing (bad password)" -> AKAuthenticationServerError -24000, i.e. the "bad password" is a symptom of the -6003 team lookup, not an actual password problem. Reproduced across three separate log captures on 2026-08-17.

Client configuration verified (not just in the portal):

  • App Store Connect API reports APPLE_ID_AUTH with APPLE_ID_AUTH_APP_CONSENT = PRIMARY_APP_CONSENT for kr.canalwalk.app.
  • The team contains no wildcard App IDs; every App ID in the team is explicit.
  • The signed binary carries application-identifier = NY3P8QZG56.kr.canalwalk.app and com.apple.developer.applesignin.
  • Toggling the capability off/on (2026-08-17) changed nothing.
  • Program agreements are active.

Control: On the same device and Apple Account, an app from this team that was authorized earlier continues to sign in normally via Sign in with Apple — so the device/account SIWA stack itself is functional; only the first-time sign-up for the newly registered App ID hits -6003.

This is the exact signature Apple resolved server-side for other teams in this thread (e.g. GW7XA5CX69, self-resolved 2026-07-31 with no client changes). Could someone from Apple please check the server-side Sign in with Apple team registration for NY3P8QZG56 / kr.canalwalk.app? Thank you.

Same failure here, Team WNGH297CLV, bundle com.kafa.home (App ID registered July 2026). Sheet renders, Face ID succeeds, "Sign-Up Not Completed", ASAuthorizationError 1001 with empty userInfo. akd shows AKSQLError -6003 "No applications were found with the provided Client ID", then SRP with server fails (AppleIDAuthSupport Code=2, AKAuthenticationServerError -24000), then AKAuthenticationError -7003. Reproduced on iPhone (iOS 26.6, 23G71), iPad (iPadOS 26.5), two Apple IDs, and by App Review (rejected under 2.1(a) on Aug 18). An older App ID of the same team, com.kafa.app (May 2026), works on the same devices. Entitlements verified in the signed binaries (app and widget extension), capability PRIMARY_APP_CONSENT, PLA accepted July 21. Feedback filed: FB24404653 with full akd logs and a sysdiagnose. @Paris X Pinkney, could the same server-side fix be applied to this team?

Team ID: NDXNQ5M4K4 (Per Diem Subscriptions, Inc.)

We are seeing the same thing: ASAuthorizationError .canceled (1001) with an empty userInfo, returned right after the user has already authenticated - a cancellation the user never made. We have rebuilt and republished the same app with no code changes and it still fails.

Is there a fix for this yet, and what is it?

Specifically:

  1. For the teams marked resolved in this thread (GW7XA5CX69 on 31 July, FRL3DTJQ62 on 12 August), what was actually changed on Apple's side?

  2. Is there anything we can do ourselves to trigger that, or does it require Apple to act on the team?

  3. Does the fix require us to delete or re-submit apps that are already live on the App Store, or is it purely server-side with no client action needed?

We have roughly 400 App IDs under this team with Sign in with Apple enabled, so whether this is a per-team or a per-App-ID action makes a large difference for us.

Same issue, same signature, another affected team.

Team ID: 2A63LT2W7G · Bundle ID: com.aiqora.app (capability APPLE_ID_AUTH / PRIMARY_APP_CONSENT enabled 2026-08-19)

Native sheet renders, Face ID completes, then "Sign Up Not Completed" — ASAuthorizationError 1001 with empty userInfo, no credential returned, zero requests reach our identity provider. Reproduced on TestFlight (App Store signed, builds 1.1.0 (9) and (10)) and ad-hoc builds on a physical iPhone.

Ruled out client-side: entitlement com.apple.developer.applesignin = ["Default"] verified in the signed binary and embedded provisioning profile; capability verified via the App Store Connect API; capability off/on toggle, a fresh distribution certificate and regenerated provisioning profiles changed nothing. The same Apple ID signs in fine to other teams' apps on the same device. All agreements accepted, membership active.

Feedback Assistant: FBXXXXXXXX

@Paris X Pinkney — could the same server-side team registration fix be applied to 2A63LT2W7G? Happy to verify immediately.

Same signature here. Team ID 4M6ZD86466, primary App ID app.hushling.ios (created 2026-08-08, Sign in with Apple enabled 2026-08-09, still failing 2026-08-20).

Native sheet renders fully, user taps Continue, framework returns ASAuthorizationError.canceled (1001) with an empty userInfo - confirmed by walking NSUnderlyingErrorKey in our own ASAuthorizationControllerDelegate rather than through a plugin, so this is the framework's own error and not a wrapper losing detail.

Verified: entitlement com.apple.developer.applesignin = ["Default"] in the signed binary and in the embedded provisioning profile; APPLE_ID_AUTH with PRIMARY_APP_CONSENT on the App ID via the App Store Connect API; explicit primary App ID, no wildcard, no grouping. Profile regenerated after enabling, capability removed and re-added via the API (DELETE 204 then POST 201), fresh TestFlight builds - no change. Two physical devices, two independent Apple Accounts that had never signed into this app, and both of those accounts sign in successfully to other teams' apps on those same devices.

Feedback ID: FB24435334 (includes sysdiagnose with the Accounts/AuthKit profile installed)

Requesting the same server-side team-registration fix that resolved GW7XA5CX69 and FRL3DTJQ62.

FB24429457

Same visible failure on another team, adding LAYR as a data point.

Team ID: 5RCJW4N328

Bundle ID: cc.brue.layr

App ID: 3F7B7MNFHY

TestFlight: 1.0.0 (4)

Device: iPhone 17 Pro, iOS 26.6

The native Sign in with Apple sheet renders, Face ID completes, and Apple then displays “Sign Up Not Completed.” No ASAuthorizationAppleIDCredential is returned to the app.

Verified today:

  • App Store Connect API reports APPLE_ID_AUTH with APPLE_ID_AUTH_APP_CONSENT = PRIMARY_APP_CONSENT.

  • The active explicit “LAYR App Store” distribution profile contains com.apple.developer.applesignin = [Default] for Team 5RCJW4N328 / cc.brue.layr.

  • The Release target uses that team, bundle ID, entitlement file, and distribution profile.

  • TestFlight build 4 is VALID and App Store eligible.

  • The app uses the native SwiftUI SignInWithAppleButton with the standard fullName and email scopes.

We do not yet have a raw ASAuthorizationError or Accounts/AuthKit sysdiagnose, so we are not claiming the server-side cause is conclusively proven. However, the visible failure matches this thread closely. Could Apple please inspect the server-side Sign in with Apple registration for Team 5RCJW4N328 / App ID 3F7B7MNFHY?

We can provide a fresh sysdiagnose, screen recording, profile details, and application logs if requested.

We are experiencing the same issue.

Team ID: FC8CZM96MV Failing Bundle ID: sumect.reptilePro Working Bundle ID in the same team: sumect.plandopro Feedback ID: FB24455664

The same Apple Account and device work with the older App ID, but the new App ID displays “Sign Up Not Completed” after Face ID succeeds.

Sign in with Apple: "Sign Up Not Completed" for every App ID in our team — framework returns canceled (1001) with empty userInfo
 
 
Q