亚马逊MWS API中的RequestThrottling问题

时间:2011-09-28 14:03:06

标签: amazon amazon-mws

我正在测试Amazon MWS API in C# for submit feeds的API示例但是在设置AWS Secret密钥,访问密钥等代码后我收到了RequestThrottled的错误,所以有详细信息是什么,但找不到任何代码示例如何解决了这个问题。

我想将feed.xml上传到亚马逊卖家帐户

  <?xml version="1.0" encoding="iso-8859-1"?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
  <Header>
    <DocumentVersion>1.01</DocumentVersion>
    <MerchantIdentifier>M_EXAMPLE_123456</MerchantIdentifier>
  </Header>
  <MessageType>Product</MessageType>
  <PurgeAndReplace>true</PurgeAndReplace>
  <Message>
    <MessageID>1</MessageID>
    <OperationType>Insert</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>

按以下方式获取错误

 Caught Exception: Request from SubmitFeed:AKIAJI4PSK4HXY6UCNMA;A2DNAGZJ1EWQLW is
 throttled.
Response Status Code: ServiceUnavailable
Error Code: RequestThrottled
Error Type: Sender
Request ID: fc59c802-04da-4dd3-89a8-db5f525cac39
XML: <ErrorResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/"><Error><Typ
e>Sender</Type><Code>RequestThrottled</Code><Message>Request from SubmitFeed:AKI
AJI4PSK4HXY6UCNMA;A2DNAGZJ1EWQLW is throttled.</Message><Detail>System.Object</D
etail></Error><RequestId>fc59c802-04da-4dd3-89a8-db5f525cac39</RequestId></Error
Response>

任何人都可以给我解决方案吗?

谢谢!

1 个答案:

答案 0 :(得分:26)

根据Amazon's API referenceSubmitFeed操作的最大请求限额为15,每2分钟恢复一次请求。这意味着您可以在15次爆发时调用此操作,但在此之后您将被限制2分钟,直到亚马逊允许您再次发出请求。 您可以在他们developer guide中更好地解释这一点,他们会更好地描述他们如何使用leaky bucket algorithm

您的Feed可能没有任何问题,但由于您提出的请求太多(可能超过15个),您会受到限制。我的建议是以这样一种方式构建你的代码,你考虑亚马逊节流并在你受到限制时有一个退避算法(比如在“恢复率”期间回来,特定于你的呼叫类型'干嘛)。另外,请记住,MWS的另一个限制是在所有类型的呼叫中每小时有10000个请求。