【问题标题】:Submit New Product Using Amazon Marketplace WebService使用亚马逊商城网络服务提交新产品
【发布时间】:2010-02-18 11:34:45
【问题描述】:

我正在尝试使用 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 有什么限制吗?

【问题讨论】:

  • 你搞定了吗?我刚开始使用 Amazon Marketplace API,感觉很糟糕。
  • 对我来说这是帐户本身的问题,我们通过致电支持解决了它。

标签: amazon-web-services soa marketplace


【解决方案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>

【讨论】:

  • 从哪里可以看到这些参数列表?
【解决方案2】:

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

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-07-12
    • 1970-01-01
    • 1970-01-01
    • 2011-12-05
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多