New User
Posts: 1

| Hi,
I am developing an iPad application in which I list movie trailers from Internet Video Archive based on search term.
I am using the following API:
http://api.internetvideoarchive.com/Video/TitleSearch.aspx?Develope...&OutputFormat=1&SearchTerm=terminator
Now, I need to get the results page-wise. For example, I want to get 25 results from each page say 1,2,…
I went through the documentation in the link:
http://api.internetvideoarchive.com/Documentation.aspx?node=Protoco...
I modified my request API as follows:
http://api.internetvideoarchive.com/Video/TitleSearch.aspx?Develope...&OutputFormat=1&SearchTerm=terminator&PageSize=25&Page= where page_number = 1, 2, 3, …
But, I get all the results at once. The output XML contains the value of PageSize=25 and Page=1, 2, … etc.
I think I have understood the documentation in a wrong way. Could you please help me to find a way to do the above pagination.
Thanks in advance.
Regards,
Deepa |