Amazon ItemSearch Availability - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T01:30:30Z http://stackoverflow.com/feeds/question/644910 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/644910/amazon-itemsearch-availability 0 Amazon ItemSearch Availability Xedecimal 2009-03-13T22:55:51Z 2009-06-27T07:32:15Z <p>I'm using the amazon web services and I was just wondering if anyone knew how I could return unavailable items, I don't exactly wish to purchase them, but to collect statistical information out of them so getting items that aren't available would make my searches much broader.</p> <pre><code>$sc = new SoapClient('http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl'); $req = new ItemSearch(); $req-&gt;AssociateTag = 'XXX'; $req-&gt;AWSAccessKeyId = 'XXX'; $req-&gt;Request = new ItemSearchRequest(); $req-&gt;Request-&gt;SearchIndex = 'All'; $req-&gt;Request-&gt;Count = 25; $req-&gt;Request-&gt;Keywords = GetVar('value'); $req-&gt;Request-&gt;ResponseGroup = 'ItemAttributes,Images,ItemIds'; $req-&gt;Request-&gt;Condition = 'All'; $req-&gt;Request-&gt;MerchantId = 'All'; $results = $sc-&gt;ItemSearch($req); print_r($results); </code></pre> <p>I've tried a lot of different methods here to collect items but for example, the 'Availability' property on Request has to be nothing or 'Available'. I'm starting to think that getting unavailable items is impossible. A good example of an unavailable item is ASIN B0006U3ACY which this will not find, but it does exist.</p> <p>Sorry, I didn't include the structures for the ItemSearch and ItemSearchRequest but they're fairly large. Any information would be muchly appreciated. Thank you.</p>