Apple software obtains application information, version number, program name, etc. through the web interface


iOS obtains application information in the AppStore through the interface.
Refer to apple's documentation: www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html.
The specific steps are as follows:
1. Use POST method Send a request:
https://itunes.apple.com/search?term=Your application name&entity=software
A more accurate way is to search based on the app's ID:
 
https://itunes.apple.com/lookup?id =your application's ID
 

Guess you like

Origin blog.csdn.net/u013712343/article/details/132216198