首页 > 解决方案 > 如何提供 unit_count_type 和 unit_count 亚马逊产品数据馈送?

问题描述

我在 _POST_PRODUCT_DATA_ 提要中提供了度量单位的值和单位计数。

XmlElement unitOfMeasure = xmlDocument.CreateElement("unitOfMeasure");
unitOfMeasure.InnerText = "Count";
Product.AppendChild(unitOfMeasure);

 XmlElement UnitCount = xmlDocument.CreateElement("UnitCount");
 UnitCount.InnerText = "1";
 Product.AppendChild(UnitCount);

我的 xml 提要看起来像这样

    <?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>xxxxxxx</MerchantIdentifier>
  </Header>
  <MessageType>Product</MessageType>
  <PurgeAndReplace>false</PurgeAndReplace>
  <Message>
    <MessageID>1</MessageID>
    <OperationType>Update</OperationType>
    <Product>
      <SKU>book1568388578</SKU>
      <StandardProductID>
        <Type>ASIN</Type>
        <Value>1568388578</Value>
      </StandardProductID>
      <ProductTaxCode>A_GEN_NOTAX</ProductTaxCode>
      <unitOfMeasure>count</unitOfMeasure>
      <UnitCount>1</UnitCount>
      <DescriptionData>
        <Title>Relapse Prevention Long-term Workbook</Title>
        <Brand> </Brand>
        <Description> </Description>
        <BulletPoint> </BulletPoint>
        <BulletPoint> </BulletPoint>
        <MSRP currency="USD">70.74</MSRP>
        <Manufacturer>Hazelden Foundation,U.S.</Manufacturer>
        <ItemType>books</ItemType>
      </DescriptionData>
      <ProductData>
        <Health>
          <ProductType>
            <HealthMisc>
              <Ingredients>Example Ingredients</Ingredients>
              <Directions>Example Directions</Directions>
            </HealthMisc>
          </ProductType>
        </Health>
      </ProductData>
    </Product>
  </Message>

</AmazonEnvelope>

我在提要结果中收到以下错误。

第 19 行第 22 列的 XML 解析错误:cvc-complex-type.2.4.a:发现以元素“unitOfMeasure”开头的无效内容。'{LaunchDate、DiscontinueDate、ReleaseDate、ExternalProductUrl、Condition、Rebate、ItemPackageQuantity、NumberOfItems、LiquidVolume、DescriptionData、DiscoveryData、ProductData、ShippedByFreight、EnhancedImageURL、仅限亚马逊供应商、仅限亚马逊、RegisteredParameter、NationalStockNumber、UnspscCode、UVPListPrice} 之一' 是期待。

标签: amazon-mwsamazonsellercentral

解决方案


我得到了解决方案。您需要在 HealthMisc Correct xml 中提供此单位计数提要。

    <?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>xxxxxxxxxx</MerchantIdentifier>
  </Header>
  <MessageType>Product</MessageType>
  <PurgeAndReplace>false</PurgeAndReplace>
  <Message>
    <MessageID>1</MessageID>
    <OperationType>Update</OperationType>
    <Product>
      <SKU>book1568388578</SKU>
      <StandardProductID>
        <Type>ASIN</Type>
        <Value>1568388578</Value>
      </StandardProductID>
      <ProductTaxCode>A_GEN_NOTAX</ProductTaxCode>
      <DescriptionData>
        <Title>Relapse Prevention Long-term Workbook</Title>
        <Brand> </Brand>
        <Description> </Description>
        <BulletPoint> </BulletPoint>
        <BulletPoint> </BulletPoint>
        <MSRP currency="USD">70.74</MSRP>
        <Manufacturer>Hazelden Foundation,U.S.</Manufacturer>
        <ItemType>books</ItemType>
      </DescriptionData>
      <ProductData>
        <Health>
          <ProductType>
            <HealthMisc>
              <UnitCount unitOfMeasure="Count">1</UnitCount>
              <Ingredients>Example Ingredients</Ingredients>
              <Directions>Example Directions</Directions>
            </HealthMisc>
          </ProductType>
        </Health>
      </ProductData>
    </Product>
  </Message>
</AmazonEnvelope>

推荐阅读