Php 注册:饲料产品数据问题亚马逊

Php 注册:饲料产品数据问题亚马逊,php,amazon-web-services,amazon,wms,Php,Amazon Web Services,Amazon,Wms,当我通过amazon mws feed api添加产品时,我得到的信息是“推荐的浏览节点”字段需要一个值。” 如何将此值和标记添加到我的请求中 我需要为此包含哪些值 我的请求: <?xml version="1.0" encoding="iso-8859-1"?> <AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

当我通过amazon mws feed api添加产品时,我得到的信息是“推荐的浏览节点”字段需要一个值。”

如何将此值和标记添加到我的请求中

我需要为此包含哪些值

我的请求:

                <?xml version="1.0" encoding="iso-8859-1"?>
            <AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
            <Header>
            <DocumentVersion>1.01</DocumentVersion>
            <MerchantIdentifier>M_EXAMPLE_123456</MerchantIdentifier>
            </Header>
            <MessageType>Product</MessageType>
            <PurgeAndReplace>false</PurgeAndReplace>
            <Message>
            <MessageID>1</MessageID>
            <OperationType>Update</OperationType>
            <Product>
            <SKU>56789</SKU>
            <StandardProductID>
            <Type>ASIN</Type>
            <Value>B0EXAMPLEG</Value>
            </StandardProductID>
            <ProductTaxCode>A_GEN_NOTAX</ProductTaxCode>
            <Condition>
            <ConditionType>New</ConditionType>
            </Condition>
            <DescriptionData>
            <Title>Laptop Product Add</Title>
            <Brand>Example Product Brand</Brand>
            <Description>This is an example product description.</Description>
            <BulletPoint>Example Bullet Point 1</BulletPoint>
            <BulletPoint>Example Bullet Point 2</BulletPoint>
            <MSRP currency="USD">25.19</MSRP>
            <Manufacturer>Example Product Manufacturer</Manufacturer>
            <ItemType>example-item-type</ItemType>
            </DescriptionData>
            <ProductData>
            <Home>
            <ProductType>
            <Kitchen></Kitchen>
            </ProductType>
            </Home>
            </ProductData>
            </Product>
            </Message>
            </AmazonEnvelope>

1.01
M_示例_123456
产品
假的
1.
更新
56789
阿辛
B0EXAMPLEG
A_GEN_NOTAX
新的
笔记本电脑产品添加
示例产品品牌
这是一个产品描述示例。
示例要点1
示例要点2
25.19
示例产品制造商
示例项目类型
我的答复是:

            <?xml version="1.0" encoding="UTF-8"?>
            <AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
            <Header>
            <DocumentVersion>1.02</DocumentVersion>
            <MerchantIdentifier>M_YOURDAILYS_1258844</MerchantIdentifier>
            </Header>
            <MessageType>ProcessingReport</MessageType>
            <Message>
            <MessageID>1</MessageID>
            <ProcessingReport>
            <DocumentTransactionID>50048016381</DocumentTransactionID>
            <StatusCode>Complete</StatusCode>
            <ProcessingSummary>
            <MessagesProcessed>1</MessagesProcessed>
            <MessagesSuccessful>0</MessagesSuccessful>
            <MessagesWithError>1</MessagesWithError>
            <MessagesWithWarning>0</MessagesWithWarning>
            </ProcessingSummary>
            <Result>
            <MessageID>0</MessageID>
            <ResultCode>Warning</ResultCode>
            <ResultMessageCode>90000</ResultMessageCode>
            <ResultDescription>http://sellercentral-europe.amazon.com/myi/search/ErrorListingsSummary?batchId=50048016381</ResultDescription>
            </Result>
            <Result>
            <MessageID>1</MessageID>
            <ResultCode>Error</ResultCode>
            <ResultMessageCode>99001</ResultMessageCode>
            <ResultDescription>A value is required for the "recommended_browse_nodes" field.</ResultDescription>
            <AdditionalInfo>
            <SKU>56789</SKU>
            </AdditionalInfo>
            </Result>
            </ProcessingReport>
            </Message>
            </AmazonEnvelope> 

1.02
M_YOURDAILYS_1258844
处理报告
1.
50048016381
完成
1.
0
1.
0
0
警告
90000
http://sellercentral-europe.amazon.com/myi/search/ErrorListingsSummary?batchId=50048016381
1.
错误
99001
“推荐的\u浏览\u节点”字段需要一个值。
56789

如何解决此问题?

检查此链接。这将指导你