I am using the Amazon ECS API in PHP to get product information using an ASIN code. I can get the information but images and product descriptions are missing. I've looked around the API class and couldn't find anything helpful. The code I am using to get the product details is:
$client = new AmazonECS(get_option('awskey'), get_option('awssecret'), 'UK');
$response = $client->lookup('0596157134');
var_dump($response); // Debugging
Is it possible with the API or is there another way to get the product description and image?