github用户API分页不起作用

时间:2016-09-04 14:35:46

标签: github

使用github用户api返回用户数据时 https://api.github.com/users?page=6&per_page=2

每个都返回相同的数据,尽管更改页面参数值和per_page 为什么这个以及如何修复以改变不同的数据

我尝试编辑标题请求并添加此标题

Name Link
Value <https://api.github.com/users?page=1&per_page=2>; rel="next",<https://api.github.com/users?page=50&per_page=2>; rel="last"

但仍然没有工作

1 个答案:

答案 0 :(得分:2)

搜索后

现在Github使用API​​ V3,如果您希望返回用户使用分页,您可以使用它 https://api.github.com/users?since=1&per_page=100

该端点不使用“page”和“per_page”,而是使用“since”和“per_page”。

since参数表示API应从哪个用户ID开始列出用户。例如:

https://api.github.com/users?since=1&per_page=100

将开始列出ID为1的用户和

https://api.github.com/users?since=10001&per_page=100

将开始列出ID为10001的用户的用户。