Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/api/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Web services 如何在AWS中获得第二页的响应?_Web Services_Api_Rest_Webservice Client - Fatal编程技术网

Web services 如何在AWS中获得第二页的响应?

Web services 如何在AWS中获得第二页的响应?,web-services,api,rest,webservice-client,Web Services,Api,Rest,Webservice Client,我是AWS的新手。我得到了AWS这样的回复 <Items> <Request> <IsValid>True</IsValid> <ItemSearchRequest> <Brand>Levi's</Brand> <Keywords>Men</Keywords> <ResponseGroup>Large</ResponseGroup>

我是AWS的新手。我得到了AWS这样的回复

<Items>
<Request>
  <IsValid>True</IsValid>
  <ItemSearchRequest>
    <Brand>Levi's</Brand>
    <Keywords>Men</Keywords>
    <ResponseGroup>Large</ResponseGroup>
    <SearchIndex>Apparel</SearchIndex>
  </ItemSearchRequest>
</Request>
*<TotalResults>282</TotalResults>
<TotalPages>29</TotalPages>*
 ***<Item>***
  <ASIN>B004A7YLN6</ASIN>
  <DetailPageURL>http://www.amazon.com/Levis-Extra-Capacity-Slimfold-Wallet/dp/B004A7YLN6%3FSubscriptionId%3DAKIAIETT7RP2RAFF4UUQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004A7YLN6</DetailPageURL>
  <SmallImage>
    <URL>http://ecx.images-amazon.com/images/I/51z7oqZYgoL._SL75_.jpg</URL>
    <Height Units="pixels">71</Height>
    <Width Units="pixels">75</Width>
  </SmallImage>
  <MediumImage>
    <URL>http://ecx.images-amazon.com/images/I/51z7oqZYgoL._SL160_.jpg</URL>
    <Height Units="pixels">152</Height>
    <Width Units="pixels">160</Width>
  </MediumImage>
   <ItemAttributes>
    <Binding>Apparel</Binding>
    <Brand>Levi's</Brand>
    <Department>mens</Department>
    <FabricType>100% Genuine Leather</FabricType>
    <Feature>Natural fold construction</Feature>
    <Feature>9 Credit card pockets</Feature>
    <Feature>Top entry mesh ID window pocket</Feature>
    </ItemAttributes>
    </Item>
     <Items>
现在,我每页有十个项目。我需要得到第二页的回复。 我怎样才能得到第二页的回复。这里的总页数是29。
如果你需要更多信息,请告诉我。我正在Asp.net应用程序中使用REST。

看起来这与AWS没有什么关系,更多的是关于您正在讨论的应用程序。例如,在使用S3的AWS中,您将获得一个isTruncated标志,其结果指示您可以通过发送start from类型的参数来请求进一步的结果。您正在调用的应用程序需要为您提供一些方法。如果应用程序是您自己编写的,则需要实现此功能。

看起来这与AWS没有什么关系,更多的是关于您正在谈论的应用程序。例如,在使用S3的AWS中,您将获得一个isTruncated标志,其结果指示您可以通过发送start from类型的参数来请求进一步的结果。您正在调用的应用程序需要为您提供一些方法。如果应用程序是您自己编写的,则需要实现此功能。

ItemPage参数允许您返回指定的结果页。如果使用“全部”作为搜索索引,则可以返回的最大ItemPage编号为10 5

有关更多信息,请参阅亚马逊文档:

供您参考,亚马逊ECS PHP库1.3版包含一个页面功能。请注意,不再维护库:

ItemPage参数允许您返回指定的结果页。如果使用“全部”作为搜索索引,则可以返回的最大ItemPage编号为10 5

有关更多信息,请参阅亚马逊文档:

供您参考,亚马逊ECS PHP库1.3版包含一个页面功能。请注意,不再维护库: