6

我正在使用亚马逊 MWS Feeds API 将产品添加到亚马逊卖家中央商店。当我使用 Amazon's Feeds API Section Reference中的一个示例时,产品添加到商店时没有价格。我在下面添加了用于将产品添加到亚马逊卖家中央商店的代码。

<?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>TEST1234</SKU>
        <StandardProductID>
          <Type>ASIN</Type>
          <Value>B0EXAMPLEG</Value>
        </StandardProductID>
        <ProductTaxCode>A_GEN_NOTAX</ProductTaxCode>
        <DescriptionData>
          <Title>Example Product Title</Title>
          <Brand>Example Product Brand</Brand>
          <Description>This is an example product description.</Description>
          <MSRP currency="USD">25.19</MSRP>
          <Manufacturer>Example Product Manufacturer</Manufacturer>
          <ItemType>example-item-type</ItemType>
        </DescriptionData>
        <ProductData>
          <Health>
            <ProductType>
              <HealthMisc>
                <Ingredients>Example Ingredients</Ingredients>
                <Directions>Example Directions</Directions>
              </HealthMisc>
            </ProductType>
          </Health>
        </ProductData>
    </Product>
  </Message>
</AmazonEnvelope>

有谁知道这个问题并告诉我如何解决它以及如何在上面的代码中添加数量?我使用了来自 Amazon Feed API 参考的这段代码。

4

1 回答 1

6

您需要为产品、价格、库存等提交不同的 xml 文件和提要类型。您不能将这些信息一起发送到 xml 文件中以上传产品。但是,如果您使用的是 excel 电子表格,则可以将所有这些信息发送到一个文件中。你可以参考这个来了解电子表格上传。http://www.amazon.com/gp/help/customer/display.html?nodeId=200203300

于 2013-01-30T06:56:04.573 回答