我有以下内容:
$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',
)
);
它返回相当多的信息,但不返回重量或类别/类型。如何获得重量和类别?