亚马逊MWS API:_POST_PRODUCT_DATA_的堆叠顺序

时间:2014-05-18 21:17:03

标签: amazon-web-services amazon-mws

我想知道我是否可以像定价一样将_POST_PRODUCT_DATA_ feedtype堆叠到亚马逊?

我试过了,亚马逊未能识别出第二个产品(第一个产品没问题,使用相同的市场和同一卖家)

我正在尝试向亚马逊添加多个产品。现在,它每小时生产的产品少于50件。

我怎样才能获得此类Feed的确切限制? 我知道SubmitFeed操作的最大请求限额为15,每2分钟恢复一次请求。

但是,例如,我不能在一个Feed中发送10个或更多的产品?

1 个答案:

答案 0 :(得分:8)

您在一个Feed中发送的产品数量没有限制,但Feed的大小限制为2,147,483,647字节。为获得最佳性能,亚马逊建议将Feed大小保持在10MB以下。 http://docs.developer.amazonservices.com/en_US/feeds/Feeds_SubmitFeed.html

如果您的某个产品无法更新,那么您通常可以通过调用GetFeedSubmissionResult(Feeds API的一部分)来找出原因。

修改:以下是包含多个产品的示例_POST_PRODUCT_DATA_ Feed。这些消息来自Selling on Amazon Guide to XML

中的示例
<?xml version="1.0" ?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
    <Header>
        <DocumentVersion>1.01</DocumentVersion>
        <MerchantIdentifier>M_SELLER_354577</MerchantIdentifier>
    </Header>
    <MessageType>Product</MessageType>
    <PurgeAndReplace>false</PurgeAndReplace>
    <Message>
        <MessageID>1</MessageID>
        <OperationType>Update</OperationType>
        <Product>
            <SKU>1Z-500ABR-FLAT</SKU>
            <StandardProductID>
                <Type>ASIN</Type>
                <Value>0123456789</Value>
            </StandardProductID>
            <ProductTaxCode>A_GEN_TAX</ProductTaxCode>
            <LaunchDate>2005-07-26T00:00:01</LaunchDate>
            <DescriptionData>
                <Title>Lyric 500 tc Queen Flat Sheet, Ivory</Title>
                <Brand>Peacock Alley</Brand>
                <Description>Lyric sheeting by Peacock Alley is the epitome of simple and classic elegance. The flat sheets
                    and pillowcases feature a double row of hemstitching. The fitted sheets fit mattresses up to 21 inches deep.
                    The sheets are shown at left with tone on tone monogramming, please call for monogramming details and prices.</Description>
                <BulletPoint>made in Italy</BulletPoint>
                <BulletPoint>500 thread count</BulletPoint>
                <BulletPoint>plain weave (percale)</BulletPoint>
                <BulletPoint>100% Egyptian cotton</BulletPoint>
                <Manufacturer>Peacock Alley</Manufacturer>
                <SearchTerms>bedding</SearchTerms>
                <SearchTerms>Sheets</SearchTerms>
                <ItemType>flat-sheets</ItemType>
                <IsGiftWrapAvailable>false</IsGiftWrapAvailable>
                <IsGiftMessageAvailable>false</IsGiftMessageAvailable>
            </DescriptionData>
            <ProductData>
                <Home>
                    <Material>cotton</Material>
                    <ThreadCount>500</ThreadCount>
                </Home>
            </ProductData>
        </Product>
    </Message>
    <Message>
        <MessageID>2</MessageID>
        <OperationType>Update</OperationType>
        <Product>
            <SKU>56789</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>
                <BulletPoint>Example Bullet Point 1</BulletPoint>
                <BulletPoint>Example Bullet Point 2</BulletPoint>
                <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>