I assume that you are using the ItemSearch operation from the Amazon Advertising Advertising API.
Your request should look like this:
http://ecs.amazonaws.com/onca/xml?
Service=AWSECommerceService&
AWSAccessKeyId=[AWS Access Key ID]&
Operation=ItemSearch&
Keywords=Edward%20Tufte&
SearchIndex=Books
&Timestamp=[YYYY-MM-DDThh:mm:ssZ]
&Signature=[Request Signature]
This should return an answer that looks like this:
<TotalResults>132</TotalResults>
<TotalPages>14</TotalPages>
<Item>
<ASIN>...</ASIN>
<DetailPageURL>...</DetailPageURL>
<ItemAttributes>...</ItemAttributes>
</Item>
<Item>
<ASIN>...</ASIN>
<DetailPageURL>...</DetailPageURL>
<ItemAttributes>...</ItemAttributes>
</Item>
<Item>
<ASIN>...</ASIN>
<DetailPageURL>...</DetailPageURL>
<ItemAttributes>...</ItemAttributes>
</Item>
...
ItemSearch ; 1-10 ( 1). , . Amazon ItemSearch , itemPage.
sudo, "Edward Tufte", Amazon ( 400 ):
keywords="Edward Tufte"
response=itemSearch(Keywords=keywords, SearchIndex="Books")
...
totalPages = getTotalPagesFromResponse(response)
If totalPages > 1
totalPages=min(400,totalPages)
page=2
while page < totalPages
response=itemSearch(Keywords=keywords, SearchIndex="Books", ItemPage=page)
...
page=page+1
:
[1] ProductSearch Amazon ( http://docs.amazonwebservices.com/AWSECommerceService/2010-11-01/DG/ItemSearch.html)