Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/design-patterns/2.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 如何在SubmitFeed Amazon MarketPlace中传递颜色和大小_Amazon Web Services_Aws Marketplace - Fatal编程技术网

Amazon web services 如何在SubmitFeed Amazon MarketPlace中传递颜色和大小

Amazon web services 如何在SubmitFeed Amazon MarketPlace中传递颜色和大小,amazon-web-services,aws-marketplace,Amazon Web Services,Aws Marketplace,我在Amazon Marketplace的Submit Feed(产品)中尝试了很多时间。缺乏明确的信息,参考文件也没有那么好。它只有基本的提要提交 我需要创建带有尺寸和颜色信息的新产品。请输入下面的代码 <MessageType>Product</MessageType> <Message> <MessageID>1</MessageID> <OperationType>Update</Ope

我在Amazon Marketplace的Submit Feed(产品)中尝试了很多时间。缺乏明确的信息,参考文件也没有那么好。它只有基本的提要提交

我需要创建带有尺寸和颜色信息的新产品。请输入下面的代码

  <MessageType>Product</MessageType>
  <Message>
    <MessageID>1</MessageID>
    <OperationType>Update</OperationType>
    <Product>
      <SKU>5000-***-**-*</SKU>
      <StandardProductID>
        <Type>UPC</Type>
        <Value>YSjsjs899ss</Value>
      </StandardProductID>
      <Condition>
        <ConditionType>New</ConditionType>
      </Condition>      
      <DescriptionData>
        <Title>Backout T-Shirt Light Pink Medium</Title>
        <Brand>Blackout T-Shirt</Brand>
        <Description>This is an sample product added by bala.</Description>
        <BulletPoint>Made in Italy</BulletPoint>
        <MSRP currency="USD">2.19</MSRP>
        <Manufacturer>Peacock Alley</Manufacturer>
        <ItemType>Novelty T-Shirts</ItemType>
      </DescriptionData>
      <ProductData>
        <Clothing>
          <VariationData>
            <Parentage>child</Parentage>
            <VariationTheme>SizeColor</VariationTheme>
            <Size>M</Size>
          </VariationData>          
          <SizeMap>Medium</SizeMap>
          <ColorName>Light Pink</ColorName>
          <ColorMap>pink</ColorMap>   
          <ClassificationData>
            <ClothingType>Underwear</ClothingType>
            <Department>mens</Department>
            <ModelNumber>CM203</ModelNumber>
         </ClassificationData>
        </Clothing>
      </ProductData>
    </Product>
  </Message>
产品
1.
更新
5000-***-**-*
UPC
YSJS899SS
新的
露背T恤浅粉色中码
遮光T恤
这是bala添加的样品产品。
意大利制造
2.19
孔雀巷
新颖T恤
小孩
水彩
M
中等
淡粉色
粉红色
内衣
男人
CM203
但它不起作用。请引导我做这件事

问候,

巴拉甘尼什

我知道这个答案已经晚了,但今天我又有了一个问题,这个问题把我带到了这里,虽然这对我没有帮助,但我相信我无论如何都能回答这个问题。下面是:

您可以在这里找到XSD(xml模式文件):

与JSON不同的是,它具有
:sequence
属性。这意味着元素进入xml文件的顺序很重要

ColorSize
变体主题中,VariationTheme块应如下所示:

<VariationData>
  <Parentage>child</Parentage>
  <Size>S</Size>
  <Color>White</Color>
  <VariationTheme>SizeColor</VariationTheme>
</VariationData>

小孩
s
白色
水彩