如何从GitHub API中仅获取15个元素?

时间:2019-05-13 09:15:29

标签: git github github-api

保留我的标题后,如何从公共API中仅获取有限数量的存储库?我正在使用以下链接:

https://api.github.com/repositories //Gets 100

要首先获得100个存储库,但我只需要获得15个即可。这是我尝试过的:

https://api.github.com/repositories?per_page=15 //Gets 100

添加per_page=10似乎根本无效。我也尝试过:

https://api.github.com/repositories?since=369&per_page=15

没有任何运气。有人可以帮我吗?

1 个答案:

答案 0 :(得分:2)

GitHub Api文档说: 注意:分页完全由since参数提供动力。 参见https://developer.github.com/v3/repos/#list-all-public-repositories

不支持per_page参数。