[AppleAuthentication][Managed app][iOS] Standalone: AuthorizationError error 1000

Please provide the following:

  1. SDK Version: 38
  2. Platforms(Android/iOS/web/all): iOS 14.4.1
  3. Add the appropriate “Tag” based on what Expo library you have a question on.

I am able to sign in with apple when I’m using my app through the iOS Expo Client. However, I’m having an error in my standalone app.

The error:

The operation couldn’t be completed. (com.apple.AuthenticationServices.AuthorizationError error 1000.)

The code:

try {
      const data = await AppleAuthentication.signInAsync({
        requestedScopes: [
          AppleAuthentication.AppleAuthenticationScope.FULL_NAME,
          AppleAuthentication.AppleAuthenticationScope.EMAIL
        ]
      })
} catch (error) {
// the error happens here
}

I suspect it’s a configuration issue, but I followed the steps in:

I went through this thread ([AppleAuthentication][Managed app][iOS] Standalone: AuthorizationError error 1000 · Issue #5781 · expo/expo · GitHub) and was unable to resolve the issue.

Any help would be greatly appreciated!

Environment

Production - Managed App - Standalone iOS

Steps to Reproduce

N/A

Expected Behavior

Pressing the sign in button should open the sign in modal.

Actual Behavior

Pressing the sign in button throws an error.

Reproducible Demo

N/A

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.