Skip to content

Instantly share code, notes, and snippets.

@icyleaf
Created September 21, 2011 03:33
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save icyleaf/1231169 to your computer and use it in GitHub Desktop.
Save icyleaf/1231169 to your computer and use it in GitHub Desktop.
Get user reviews page content by curl. source from http://stackoverflow.com/questions/4731620/crawl-data-on-the-app-store
# replace the value of 'id=xxxx' to your app id
curl -H 'Host: itunes.apple.com' \
-H 'Accept-Language: en-us, en;q=0.50' \
-H 'X-Apple-Store-Front: 143444,5' \
-H 'X-Apple-Tz: 3600' \
-U 'iTunes/9.2.1 (Macintosh; Intel Mac OS X 10.5.8) AppleWebKit/533.16' \
"http://itunes.apple.com/WebObjects/MZStore.woa/wa/customerReviews?s=143444&id=xxxxxxxxx&displayable-kind=11"
@icyleaf
Copy link
Author

icyleaf commented Sep 21, 2011

Preview image with Chrome + REST Console:

screenshot

@icyleaf
Copy link
Author

icyleaf commented Sep 21, 2011

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment