PDA

View Full Version : AWS: getting production description?



Kings
01-27-2004, 01:17 PM
I've looked through all the available docs, and as far as I know, it's not possible to get the description of a product, correct?

Because I see some AWS-sites that do have the product descriptions.

flyingpylon
01-27-2004, 03:10 PM
It's possible, where they are available. They're just not available for all products via AWS, even though you see them on Amazon.com.

Kings
01-27-2004, 03:18 PM
Originally posted by flyingpylon
It's possible, where they are available. They're just not available for all products via AWS, even though you see them on Amazon.com. Ah, I see, so what is the item called in the XML? 'ProductDescription'?

chromate
01-27-2004, 04:17 PM
Not sure what it's called cause I normally use 'Features' for my sites. If you do print_r($item) when $item is the item array, you should see it there.

flyingpylon
01-27-2004, 07:20 PM
Yes, it's ProductDescription. The XPath to get to that node is ProductInfo/Details/ProductDescription.

MattM
01-27-2004, 07:34 PM
I've tried this but nothing is coming up. I'm echoing ProductDescription, and I'm using SOAP and PHP.

Kings
01-28-2004, 08:32 AM
Originally posted by flyingpylon
Yes, it's ProductDescription. The XPath to get to that node is ProductInfo/Details/ProductDescription. Thanks :)