How can I get images and descriptions from the Amazon Product Advertising API?

I use the Amazon Product Advertising API (formerly ECS) in PHP to retrieve product information using ASIN code. I can get information, but there are no images or product descriptions. I looked at the API class and did not find anything useful. The code I use to get product information:

$client = new AmazonECS(get_option('awskey'), get_option('awssecret'), 'UK'); 
$response = $client->lookup('0596157134'); 
var_dump($response); // Debugging

Is this possible with the API or is there another way to get the description and image of the product?

+5
source share
1 answer

, , . ResponseGroup, , Amazon (. Amazon ItemLookup Documentation ). , "". :

$response = $client->responseGroup('Medium')->lookup('0596157134'); 
+6

All Articles