amazon-web-services - 亚马逊 MWS API : stack order of _POST_PRODUCT_DATA_

标签 amazon-web-services amazon-mws

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

我试过了,亚马逊无法识别第二个产品(第一个没问题,使用相同的 Marketplace 和相同的卖家)

我正在尝试向亚马逊添加多种产品。现在它在每小时不到 50 个产品的情况下运行良好。

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

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

最佳答案

您在一个 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_ 供稿。这些消息来自 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>

关于amazon-web-services - 亚马逊 MWS API : stack order of _POST_PRODUCT_DATA_,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23726937/

相关文章:

node.js - 亚马逊 MWS SubmitFeed Content-MD5 HTTP header 与亚马逊计算的 Content-MD5 不匹配

api - 亚马逊 MWS API(产品和实时订单更新)

api - 在亚马逊 MWS 上调用 ListOrders 时多个订单丢失

node.js - 在 Amazon MWS API 上创建出库货件时出现签名错误

ruby-on-rails - AWS Elastic Beanstalk Rails Bundler 失败

SNS 中消息的正则表达式过滤

mysql - 每日将 AWS Aurora 数据库复制到另一个 AWS Aurora 数据库

amazon-web-services - 如何在 SAM 项目中使用 codepipeline?

amazon-web-services - 推送新镜像版本后如何更新EC2实例

amazon-mws - MWS 或 'Product Advertising API' 如何判断产品是否为 'Add-on-Item'