产品Feed已成功提交,但在亚马逊仪表板中无法显示

时间:2016-03-01 07:41:14

标签: amazon-mws

在亚马逊饲料提交中,我正在尝试向亚马逊mws提交产品数据。

以下是我的xml Feed代码。一切都很好,这个饲料也成功提交。但是在亚马逊卖家仪表板中它没有显示。

我的上述产品格式是否有不同格式的xml?有人有适当的多个Feed上传样本格式吗?扔在亚马逊产品列表中的产品可以显示。提供产品xml Feed示例代码(如果有)。

<?xml version="1.0" encoding="UTF-8"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd"> 
    <Header>
        <DocumentVersion>1.1</DocumentVersion>
        <MerchantIdentifier>xxxxxxxxxxxx</MerchantIdentifier>
    </Header>
    <MessageType>Product</MessageType>
    <Message>
        <MessageID>1</MessageID>
        <OperationType>Update</OperationType>
        <Product>
        <SKU>1234</SKU>
        <StandardProductID>
            <Type>UPC</Type>
            <Value>1234123412343</Value>
        </StandardProductID>
        <Condition>
        <ConditionType>Refurbished</ConditionType>
        <ConditionNote>Looks like new</ConditionNote>
        </Condition>
        <DescriptionData>
            <Title>First march Product feed</Title>
            <Brand>blabla</Brand>
            <Description>my desc</Description>
            <BulletPoint>f1</BulletPoint>
            <BulletPoint>f2</BulletPoint>
            <BulletPoint>f3</BulletPoint>
            <BulletPoint>f4</BulletPoint>
            <BulletPoint>f5</BulletPoint>
            <PackageWeight unitOfMeasure="GR">290</PackageWeight>
            <ShippingWeight unitOfMeasure="GR">5</ShippingWeight>
            <Manufacturer>A manufacturer</Manufacturer>
            <MfrPartNumber>1234123412343</MfrPartNumber>
            <SearchTerms>a</SearchTerms>
            <SearchTerms>b</SearchTerms>
            <SearchTerms>c</SearchTerms>
            <SearchTerms>d</SearchTerms>
            <SearchTerms>e</SearchTerms>
            <RecommendedBrowseNode>111111</RecommendedBrowseNode>
        </DescriptionData>
        <ProductData>
            <CE>
                <ProductType>
                    <PhoneAccessory/>
                </ProductType>
            </CE>
        </ProductData>
        </Product>
    </Message>
    <Message>
        <MessageID>2</MessageID>
        <OperationType>Update</OperationType>
        <Product>
        <SKU>3333</SKU>
        <StandardProductID>
            <Type>UPC</Type>
            <Value>4444123412343</Value>
        </StandardProductID>
        <Condition>
        <ConditionType>New</ConditionType>
        </Condition>
        <DescriptionData>
            <Title>First march Product feed second</Title>
            <Brand>brand</Brand>
            <Description>my desc 2</Description>
            <MfrPartNumber>4444123412343</MfrPartNumber>
            <RecommendedBrowseNode>111111</RecommendedBrowseNode>
        </DescriptionData>
        <ProductData>
            <Sports>
                <ProductType>SportingGoods</ProductType>
            </Sports>
        </ProductData>
        </Product>
    </Message>
</AmazonEnvelope>

1 个答案:

答案 0 :(得分:1)

我已经解决了这个问题。

我已使用xml创建了多个产品Feed上传的确切格式。下面是我正在运行的代码。

selenium-webdriver

它的工作。 :):)