Amazon product api 使用亚马逊产品广告API获取产品类别

Amazon product api 使用亚马逊产品广告API获取产品类别,amazon-product-api,Amazon Product Api,通过Amazon产品广告API,我可以用ISBN、ASIN和UPC检索产品列表。我有所有信息,如标题,图像,畅销书排名等。现在我想检索产品类别。在回答中,我得到了以下产品属性 <ItemAttributes> <Binding>Office Product</Binding> <Brand>3M</Brand> <CatalogNumberList>

通过
Amazon产品广告API
,我可以用
ISBN
ASIN
UPC
检索产品列表。我有所有信息,如标题图像畅销书排名等。现在我想检索产品类别。在回答中,我得到了以下产品属性

<ItemAttributes>
            <Binding>Office Product</Binding>
            <Brand>3M</Brand>
            <CatalogNumberList>
                <CatalogNumberListElement>MMMTP5851100</CatalogNumberListElement>
            </CatalogNumberList>
            <Color>NA</Color>
            <EAN>0778853213952</EAN>
            <EANList>
                <EANListElement>0778853213952</EANListElement>
                <EANListElement>0823019692079</EANListElement>
                <EANListElement>0800011321299</EANListElement>
                <EANListElement>0804993541201</EANListElement>
                <EANListElement>0801593278209</EANListElement>
                <EANListElement>0051141366623</EANListElement>
                <EANListElement>0809302061470</EANListElement>
                <EANListElement>0638084746578</EANListElement>
                <EANListElement>0739197517144</EANListElement>
            </EANList>
            <Feature>Tough, moisture resistant polyester film.</Feature>
            <Feature>Preserve and protect keepsake photos and documents.</Feature>
            <Feature>Keep frequently used documents neat and legible.</Feature>
            <ItemDimensions>
                <Height Units="hundredths-inches">438</Height>
                <Length Units="hundredths-inches">263</Length>
                <Weight Units="Hundredths Pounds">41</Weight>
                <Width Units="hundredths-inches">125</Width>
            </ItemDimensions>
            <Label>3M Office Products</Label>
            <ListPrice>
                <Amount>1012</Amount>
                <CurrencyCode>USD</CurrencyCode>
                <FormattedPrice>$10.12</FormattedPrice>
            </ListPrice>
            <Manufacturer>3M Office Products</Manufacturer>
            <Model>TP5851100</Model>
            <MPN>TP5851-100</MPN>
            <NumberOfItems>1</NumberOfItems>
            <PackageDimensions>
                <Height Units="hundredths-inches">120</Height>
                <Length Units="hundredths-inches">520</Length>
                <Weight Units="Hundredths Pounds">10</Weight>
                <Width Units="hundredths-inches">270</Width>
            </PackageDimensions>
            <PackageQuantity>1</PackageQuantity>
            <PartNumber>TP5851-100</PartNumber>
            <ProductGroup>Office Product</ProductGroup>
            <ProductTypeName>OFFICE_PRODUCTS</ProductTypeName>
            <PublicationDate>2014-03-14</PublicationDate>
            <Publisher>3M Office Products</Publisher>
            <Size>100-Pouches</Size>
            <Studio>3M Office Products</Studio>
            <Title>Scotch Thermal Laminating Pouches, 2.32 x 3.70-Inches, Business Card Size, 100-Pack (TP5851-100)</Title>
            <UPC>638084746578</UPC>
            <UPCList>
                <UPCListElement>638084746578</UPCListElement>
                <UPCListElement>739197517144</UPCListElement>
                <UPCListElement>801593278209</UPCListElement>
                <UPCListElement>051141366623</UPCListElement>
                <UPCListElement>778853213952</UPCListElement>
                <UPCListElement>800011321299</UPCListElement>
                <UPCListElement>809302061470</UPCListElement>
                <UPCListElement>804993541201</UPCListElement>
                <UPCListElement>823019692079</UPCListElement>
            </UPCList>
        </ItemAttributes>

办公产品
3米
MMMTP5851100
NA
0778853213952
0778853213952
0823019692079
0800011321299
0804993541201
0801593278209
0051141366623
0809302061470
0638084746578
0739197517144
坚韧、防潮的聚酯薄膜。
保存和保护纪念照片和文档。
经常使用的文件应保持整洁、清晰。
438
263
41
125
3M办公产品

为此,我需要确切的分类。根据每个类别,卖家必须向亚马逊支付一定比例的价格作为亚马逊推荐费。那么,有什么方法可以检索到确切的类别吗

编辑:我尝试使用浏览节点作为响应。它为我提供了类别节点。还有一个
isRootCategory
response值,告诉您类别是否为root。
e、 g对于布料项目,它为我提供了
衣服、鞋子和珠宝的根类别。但要计算参考费,该产品必须有一个根类别“服装和配件”。因此,
17%
的参考费可以根据项目价格计算

只需将浏览节点添加到所需的response@baao检查编辑。这是您将从该API获得的所有信息(您仍然可以使用该API)。然而,我建议使用amazon MWS——甚至有一个电话会直接返回费用(至少对于FBA)。请参阅和提供的不同报告类型@baao我将尝试一下,并感谢您的帮助。