2

我正在尝试使用 MWS 添加新产品,这是我正在使用的 XML:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<AmazonEnvelope>
<Header>
<DocumentVersion>1.01</DocumentVersion>
<MerchantIdentifier>my merchant id</MerchantIdentifier>
</Header>
<MessageType>Product</MessageType>
<Message>
<MessageID>1</MessageID>
<Product>
<SKU>SKU-TEST-123</SKU>
<StandardProductID>
<Type>ISBN</Type>
<Value>9781235467899</Value>
</StandardProductID>
<LaunchDate>2010-02-17T20:15:58.309+02:00</LaunchDate>
<ReleaseDate>2010-02-17T20:15:58.309+02:00</ReleaseDate>
<DescriptionData>
<Title>My Product</Title>
<Description>Product Description ...</Description>
</DescriptionData>
</Product>
</Message>
</AmazonEnvelope>

处理报告中出现错误:

<Result>
<MessageID>1</MessageID>
<ResultCode>Error</ResultCode>
<ResultMessageCode>8060</ResultMessageCode>
<ResultDescription>The Product with SKU [SKU-TEST-123] cannot be matched to an existing product for the following reason: (NEW is not allowed; ). For more details, see http://sellercentral.amazon.com/gp/errorcode/8060</ResultDescription>
<AdditionalInfo>
<SKU>SKU-TEST-123</SKU>
</AdditionalInfo>
</Result>

我应该可以上传新产品,不是吗?SKU 有什么限制吗?

4

2 回答 2

1

您应该在 MessageID 之后立即指定 OperationType。例如:

<MessageID>1</MessageID>
    <OperationType>PartialUpdate</OperationType>
    <Product>
      <SKU>SKU-TEST-123</SKU>
      <StandardProductID>
        <Type>ISBN</Type>
        <Value>9781235467899</Value>
      </StandardProductID>
      <ProductTaxCode>A_GEN_TAX</ProductTaxCode>
      <DescriptionData>
        <Title>My product</Title>
        <Brand>My brand</Brand>
        <Description>My description</Description>
        <MSRP currency="USD">24.03</MSRP>
        <Manufacturer>blah</Manufacturer>
        <SearchTerms>foo</SearchTerms>
        <SearchTerms>bar</SearchTerms>
        <SearchTerms>xyzzy</SearchTerms>
      </DescriptionData>
    </Product>
  </Message>
于 2011-04-26T18:31:40.497 回答
0

我在上传文本制表符分隔文件时遇到了同样的错误......所有出现该错误的人似乎都是出售的书籍,或者我试图从数据库中删除的书籍......但它们似乎仍然脱落无论如何。尝试在此处搜索您的 sku https://sellercentral.amazon.com/myi/search/ItemSummary.amzn?ref_=sc_site_map_smless_ezdpc_gui_inv&refsrc=sm 也许文件已上传,亚马逊只是向您吐出一条奇怪的错误消息?

于 2010-07-07T20:33:57.777 回答