Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/amazon-web-services/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Amazon web services 使用Amazon Marketplace Web服务提交新产品_Amazon Web Services_Soa_Marketplace - Fatal编程技术网

Amazon web services 使用Amazon Marketplace Web服务提交新产品

Amazon web services 使用Amazon Marketplace Web服务提交新产品,amazon-web-services,soa,marketplace,Amazon Web Services,Soa,Marketplace,我正在尝试使用MWS添加一个新产品,下面是我使用的XML: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <AmazonEnvelope> <Header> <DocumentVersion>1.01</DocumentVersion> <MerchantIdentifier>my merchant id</MerchantIdentifier>

我正在尝试使用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>

1.01
我的商人身份证
产品
1.
SKU-TEST-123
ISBN
9781235467899
2010-02-17T20:15:58.309+02:00
2010-02-17T20:15:58.309+02:00
我的产品
产品说明。。。
我在处理报告中遇到错误:

<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>

1.
错误
8060
SKU为[SKU-TEST-123]的产品无法与现有产品匹配,原因如下:(不允许使用新产品;)。有关详细信息,请参阅http://sellercentral.amazon.com/gp/errorcode/8060
SKU-TEST-123

我应该可以上传新产品,不是吗?SKU是否有任何限制

我在文本选项卡分隔的文件上载中遇到了相同的错误。。。所有出现该错误的书籍似乎都是售出的书籍,或者我正试图从数据库中删除的书籍。。但不管怎么说,他们似乎还是成功了。尝试在此处搜索您的sku
也许文件已经上传,amazon只是向您发出了一条奇怪的错误消息?

您应该在消息ID之后立即指定操作类型。例如:

<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>
1
部分更新
SKU-TEST-123
ISBN
9781235467899
A_genu__税
我的产品
我的品牌
我的描述
24.03
废话
福
酒吧
xyzzy

您的工作正常了吗?我刚刚开始使用Amazon Marketplace API,但它很糟糕。对我来说,这是帐户本身的问题,我们通过调用支持来修复它。从哪里可以看到这些参数列表?