xcodepackagexcrunnotarization

Apple Notarization: An error occurred while processing the json request (1268)


Issue

I'm having an issue notarizing my app using xcrun command:

xcrun altool --notarize-app --primary-bundle-id "com.foobar.fooapp" --username="developer@foo.com" --password "@keychain:Developer-altool" --file ./myapp.pkg

I'm checking for notarization status using:

xcrun altool --notarization-history 0 -u "developer@***" -p "@keychain:Developer-altool"

But as I can't get anything except a Notarization In Progress status, it seems the notarization is failing (it generally takes around 5 min in my context).

I'm using this step by step for months and nothing seems to have changed on the Apple side since then.

What I tried

xcrun altool --notarization-info "Your-Request-UUID" \
             --username "username@example.com" \                                    
             --password "@keychain:Developer-altool"   

There I got a JSON URL with the message: An error occurred while processing the json request. (1268)

Question

Any idea why I can't notarize my app with the step by step above?


Solution

  • When I first checked today, the Apple System Status was returning that everything was working as expected.

    However, it states now that there is a Developer ID Notary Service - Outage on the Apple Developer side.

    Outage

    Therefore, the solution is probably to wait for the outage to be resolved before trying the notarization process again.


    EDIT: The outage ended on Apple side and I could notarize my app again!

    end outage