Does RSS feeds provides any way for iterative retrieval like first retrieve some N number of items and in next request retrieve next N number of items
Does RSS feeds provides any way for iterative retrieval like first retrieve some N
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
RSS feeds are just XML files and can include any number of elements your server decides to include in it.
You could write a server to process requests from a client so that it returns the next set of N items on each request. But you’d have to program the server and the client so that they know how to speak to each other. It wouldn’t be too hard to include the last item received in your request, so that the server would know where to start with the next item.