我想知道我是否可以像定价一样将 _POST_PRODUCT_DATA_ feedtype 堆叠到亚马逊?
我试过了,亚马逊无法识别第二个产品(第一个没问题,使用相同的市场和相同的卖家)
我正在尝试向亚马逊添加多种产品。目前,它运行良好,每小时少于 50 件产品。
我如何才能获得此类提要的确切限制?
我知道 SubmitFeed 操作的最大请求配额为 15,并且每 2 分钟恢复一次请求。
但是例如,我不能在一个 Feed 中发送 10 个或更多产品吗?
最佳答案
您在一个提要中发送的产品数量没有限制,但提要的大小限制为 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>
关于amazon-web-services - 亚马逊 MWS API : stack order of _POST_PRODUCT_DATA_,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23726937/