Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I check my ios app version history detail on itunesconnect

Now My app was update to version 1.4, So can't find my app's version 1.0 states on itunesconnect. Now I really need my version 1.0's detail such as app create date or sth.... Does any one can help me?

like image 846
TJPancake Avatar asked Dec 15 '22 19:12

TJPancake


2 Answers

In case anybody wonders how services like sensortower get this data:

Unfortunately there is no API for this. The iTunes App Page seems to get this info out of the versionHistory array deep inside its.serverData.

For the response to include this, the request needs these HTTP headers:

X-Apple-Store-Front : 143445-2,32
apple-originating-system : MZStore

Here link with sample request and response: https://gist.github.com/catlan/30b2e87dedb00733e4e223e60fd08c63

Notes about X-Apple-Store-Front:

iTunes: 143445-2,32
Mac App Store: 143445-2,13
Volume Purchase Programme for Business: 143445-2,14
Volume Purchase Programme for Education: 143445-2,11
JSON: 143445-2,20

This should also answer the (closed?) questions: App Store API for release notes / updates and How to access complete version history of iOS App

like image 81
catlan Avatar answered Jan 31 '23 01:01

catlan


Any app's version history is now available in the iTunes application on the app's page, under Version History.

like image 43
Jason Boehle Avatar answered Jan 31 '23 01:01

Jason Boehle