Home > front end >  AppCenter IOS App store connection error finding app
AppCenter IOS App store connection error finding app

Time:07-13

I am trying to connect appcenter to app store, I can create the account connection to app center however it wont find the app that is already published:

No apps found on App Store Connect Please create an app and refresh

Any idea?

CodePudding user response:

This looks like a bug in the AppCenter code. The browser console shows an error for the request to get apps. e.g. the POST request to:

https://appcenter.ms/api/v0.1/apple/itunes/get_all_apps

returns HTTP 500 with the response

{
    "code": "internal_server_error",
    "message": "{\"code\":\"internal_server_error\",\"message\":\"undefined method `include?' for nil:NilClass\"}"
}

Unfortunately this looks it will need Microsoft to fix it.


Update

The AppCenter team have come back with a message to say it's an issue with FastLane, specifically this issue which then points the finger back to Apple.

There is a status page for this issue which can be found here.

CodePudding user response:

Appcenter support said it is a problem with fastlane and they will try get it sorted as soon as possible

  • Related