当我获取产品的数据时,即:
get_matching_product_for_id('UPC', '887439784189')
部分回应是:
"SalesRankings"=>
{"SalesRank"=>
{"ProductCategoryId"=>"apparel_display_on_website", "Rank"=>"6257"}}}
如何将apparel_display_on_website
与类别Clothing
相关联。我是否需要调用另一种api方法?
答案 0 :(得分:0)
看起来ProductGroup
在GetMatchingProductForId
响应中标识为ItemAttribute
。那是你在找什么?
来自docs,为简洁而编辑:
...
<Product>
...
<AttributeSets>
<ns2:ItemAttributes xml:lang="en-US">
...
<ns2:ProductGroup>Book</ns2:ProductGroup>
...
</ns2:ItemAttributes>
</AttributeSets>
...
</Product>
...
如果您想要所有ProductCategories
,可以使用GetProductCategoriesForSKU
或GetProductCategoriesForASIN
,它会回复非常详细的类别信息(包括所有类别层次结构,例如{{3} })。