Jump to content

Scraping Itunes information


Blaine0002

Recommended Posts

So ive figured out how to copy links out of itunes and scrape information using php cURL,

 

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://ax.phobos.apple.com.edgesuite.net/WebObjects/MZStore.woa/wa/viewSoftware?id=305974985&mt=8');
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$data = curl_exec($ch);
curl_close($ch);

 

but what im trying to do now has me stumped, if you open up itunes and hit browse select a random category, genre, ect, results are displayed on the bottom.

 

how would i go about scraping these results? where are they coming from?

 

Thanks!

Link to comment
https://forums.phpfreaks.com/topic/150580-scraping-itunes-information/
Share on other sites

  • 1 month later...

I am trying to scrape the itunes movie information. Did you ever manage to get the url/source of the "bottom pane" in iTunes? It's so weird, I have monitored the GET requests going to the apple server, and I have downloaded the source of all the files but they only give the source of the top panes.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.