Skip to content

Instantly share code, notes, and snippets.

@hendrikcech
Last active August 29, 2015 13:57
Show Gist options
  • Save hendrikcech/9544481 to your computer and use it in GitHub Desktop.
Save hendrikcech/9544481 to your computer and use it in GitHub Desktop.
Pagination

Think of a web app that displays a list of blog posts. The app only lists 10 items per page and shows a navigation with next, previous and direct links to each page. The app can fetch the posts for page 1 with posts_feed?types=https://blog.post&limit=10. Page 2 can be shown by following the next link of this request. But how is the app supposed to directly fetch posts for page 3 or higher?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment