php 如何添加价格和数量的细节时,添加一个产品到亚马逊卖家中心使用亚马逊MWS?

pxyaymoc  于 2023-02-21  发布在  PHP
关注(0)|答案(1)|浏览(149)

我正在使用亚马逊MWS Feeds API添加产品到亚马逊卖家中心商店。当我使用亚马逊的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>

这个问题的原因是什么?如何修复?如何在上面的代码中添加Quantity?我使用了Amazon Feed API参考中的代码。

63lcw9qa

63lcw9qa1#

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

相关问题