facundoolano / app-store-scraper

scrape data from the itunes app store
MIT License
1.03k stars 240 forks source link

Feature Request: Appstore Release Notes #39

Open QuynhNguyen opened 7 years ago

QuynhNguyen commented 7 years ago

Would love to have a list of release notes. Or even just the count would be amazing!

Thanks

facundoolano commented 7 years ago

I'm sorry but I don't really have that, I should be keeping a CHANGELOG but for now your safest bet is to just review the commits. Maybe the releases list can be extracted from npm somehow

QuynhNguyen commented 7 years ago

@facundoolano Sorry, I meant the AppStore App's release note. Thanks!

tdunham02 commented 5 years ago

There's an additional lookup endpoint that returns this data:

https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?mt=8&id=

Give that a try using an iPhone user agent. It contains a lot of version history data (versionHistory).

Pit-Storm commented 5 years ago

There's an additional lookup endpoint that returns this data:

https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?mt=8&id=

Give that a try using an iPhone user agent. It contains a lot of version history data (versionHistory).

This opens the App, it ID I pasted in, in iTunes or AppStore. Depends if I open it on iPhone or a Computer. How did you extract data from this? Even curl gives the code for "Connecting to Apple Music..."-site back.

I'm also interested in a scraping endpoint for update notes in app store. If someone hat insights for this, please tell us :-)

tdunham02 commented 5 years ago

@Pit-Storm Curl with an iPhone user agent returns this data: https://pastebin.com/gHyh9V8C

The key "versionHistory" includes the release notes.

Note: You can also add the &cc= parameter to the URL for the country code (ex: &cc=de for Germany).

ThatGuySam commented 3 years ago

Here's another method that worked for me: https://github.com/RSS-Bridge/rss-bridge/blob/master/bridges/AppleAppStoreBridge.php