0

我有以下内容:

$amazon = new Zend_Service_Amazon($this->AMAZON_API_KEY, 'US', $this->AMAZON_API_SECRET);
$book   = $amazon->itemLookup($isbn,
  array(
    'SearchIndex'   => 'Books',
    'AssociateTag'  => 'NON ASSOCIATE',
    'IdType'        => 'ISBN',
    'ResponseGroup' => 'Large,ItemAttributes,Images,EditorialReview',
  )
);

它返回相当多的信息,但不返回重量或类别/类型。如何获得重量和类别?

4

1 回答 1

0

Amazon 返回的信息由指定的 ResponseGroup 决定。每个响应组包含的内容的详细信息最好从 Amazon 文档中获得。

http://docs.aws.amazon.com/AWSECommerceService/latest/DG/CHAP_ResponseGroupsList.html

这里需要注意的点是:

于 2014-01-03T14:22:40.820 回答