Getting product details using Amazon API
问题 I've got the following code to output a list of items from amazon, but I not sure how to access specific products (with Summery, reviews, etc). Any help would be appreciated. <?php function makeAWSUrl($parameters, $associate_tag, $access_key, $secret_key, $aws_version = '2009-06-01') { $host = 'ecs.amazonaws.com'; $path = '/onca/xml'; $query = array( 'Service' => 'AWSECommerceService', 'AWSAccessKeyId' => $access_key, 'AssociateTag' => $associate_tag, 'Timestamp' => gmdate('Y-m-d\TH:i:s\Z'),