Amazon API: How to find album title for mp3 downloads? -
i using amazon web services api allow search on website mp3 downloads. works, returning title, artist, price, , various other statistics, in results album name. on amazon's website, lists album names downloads (example) name exists somewhere.
here arguments (signature , accesskey omitted):
<argument name="operation" value="itemsearch"/> <argument name="service" value="awsecommerceservice"/> <argument name="count" value="20"/> <argument name="version" value="2010-11-01"/> <argument name="keywords" value="u2 joshua tree"/> <argument name="timestamp" value="2011-06-30t23:10:40z"/> <argument name="responsegroup" value="itemattributes,offers,images"/> <argument name="searchindex" value="mp3downloads"/>
i tried adding relateditems
responsegroup, , relationshiptype=authoritytitle
argument, gave me weird results weren't u2. (page 143 of api pdf version 2010-11-01 if you're curious)
and here xml result 1 of songs, sorry it's hard on eyes. song in album "the joshua tree (remastered)" (see "example" search above) not listed anywhere.
<item> <asin>b001nb6yku</asin> <detailpageurl> http://www.amazon.com/running-to-stand-still/dp/b001nb6yku%3fsubscriptionid%3dakiajelhruwlowhphoaq%26tag%3dws%26linkcode%3dxm2%26camp%3d2025%26creative%3d165953%26creativeasin%3db001nb6yku </detailpageurl> <itemlinks> <itemlink> <description>technical details</description> <url> http://www.amazon.com/running-to-stand-still/dp/tech-data/b001nb6yku%3fsubscriptionid%3dakiajelhruwlowhphoaq%26tag%3dws%26linkcode%3dxm2%26camp%3d2025%26creative%3d386001%26creativeasin%3db001nb6yku </url> </itemlink> <itemlink> <description>all customer reviews</description> <url> http://www.amazon.com/review/product/b001nb6yku%3fsubscriptionid%3dakiajelhruwlowhphoaq%26tag%3dws%26linkcode%3dxm2%26camp%3d2025%26creative%3d386001%26creativeasin%3db001nb6yku </url> </itemlink> <itemlink> <description>all offers</description> <url> http://www.amazon.com/gp/offer-listing/b001nb6yku%3fsubscriptionid%3dakiajelhruwlowhphoaq%26tag%3dws%26linkcode%3dxm2%26camp%3d2025%26creative%3d386001%26creativeasin%3db001nb6yku </url> </itemlink> </itemlinks> <smallimage> <url> http://ecx.images-amazon.com/images/i/41uvtenuwnl._sl75_.jpg </url> <height units="pixels">69</height> <width units="pixels">75</width> </smallimage> <mediumimage> <url> http://ecx.images-amazon.com/images/i/41uvtenuwnl._sl160_.jpg </url> <height units="pixels">146</height> <width units="pixels">160</width> </mediumimage> <largeimage> <url> http://ecx.images-amazon.com/images/i/41uvtenuwnl.jpg </url> <height units="pixels">457</height> <width units="pixels">500</width> </largeimage> <imagesets> <merchantid>a17sfutivb227z</merchantid> <imageset category="primary"> <swatchimage> <url> http://ecx.images-amazon.com/images/i/41uvtenuwnl._sl30_.jpg </url> <height units="pixels">27</height> <width units="pixels">30</width> </swatchimage> <smallimage> <url> http://ecx.images-amazon.com/images/i/41uvtenuwnl._sl75_.jpg </url> <height units="pixels">69</height> <width units="pixels">75</width> </smallimage> <thumbnailimage> <url> http://ecx.images-amazon.com/images/i/41uvtenuwnl._sl75_.jpg </url> <height units="pixels">69</height> <width units="pixels">75</width> </thumbnailimage> <tinyimage> <url> http://ecx.images-amazon.com/images/i/41uvtenuwnl._sl110_.jpg </url> <height units="pixels">101</height> <width units="pixels">110</width> </tinyimage> <mediumimage> <url> http://ecx.images-amazon.com/images/i/41uvtenuwnl._sl160_.jpg </url> <height units="pixels">146</height> <width units="pixels">160</width> </mediumimage> <largeimage> <url> http://ecx.images-amazon.com/images/i/41uvtenuwnl.jpg </url> <height units="pixels">457</height> <width units="pixels">500</width> </largeimage> </imageset> </imagesets> <itemattributes> <binding>mp3 download</binding> <creator role="primary contributor">u2</creator> <genre>rock-music</genre> <label>u2 /island catalog</label> <manufacturer>u2 /island catalog</manufacturer> <productgroup>digital music track</productgroup> <producttypename>downloadable_music_track</producttypename> <publicationdate>2007-11-20</publicationdate> <publisher>u2 /island catalog</publisher> <releasedate>2007-11-20</releasedate> <runningtime units="seconds">257</runningtime> <studio>u2 /island catalog</studio> <title>running stand still</title> <tracksequence>5</tracksequence> </itemattributes> <offersummary> <lowestnewprice> <amount>99</amount> <currencycode>usd</currencycode> <formattedprice>$0.99</formattedprice> </lowestnewprice> <totalnew>1</totalnew> <totalused>0</totalused> <totalcollectible>0</totalcollectible> <totalrefurbished>0</totalrefurbished> </offersummary> <offers> <totaloffers>0</totaloffers> <totalofferpages>0</totalofferpages> </offers> </item>
Comments
Post a Comment