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);
Is this possible with the API or is there another way to get the description and image of the product?
source
share