Skip to content
Advertisement

How get all results from github search api?

I need to get all results with github search api with pagination using. Now I use request: https://api.github.com/search/repositories?q=lib&page=1&per_page=20 I read that the responses also includes the Link header which contains a ready-made URL to the next page. In response I have link https://api.github.com/search/repositories?q=lib&page=2&per_page=20> and link to the last page: https://api.github.com/search/repositories?q=java&page=50&per_page=20 But I don’t understand how can I to implement transition to the next page using these links.

Advertisement

Answer

You can create a variable to keep track of your current page. & increment it on the success each time until your list size becomes equal to total_count.

on RecyclerView end reached method can be called again.

I have tried to demonstrate the example as following please use the actual calls & stuff that you’re using. just understand the pattern.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement