当我想使用以下API来获取github用户时:https://api.github.com/users
,它给了我正好46个用户。我如何获取例如其中只有十个?
答案 0 :(得分:0)
您可以尝试在API URL中添加the per_page
directive
通过传递per_page参数,您可以指定希望每个页面返回多少个项目,最多100个项目。
让我们尝试询问有关addClass
的10个项目:curl -I "https://api.github.com/search/code?q=addClass+user:mozilla&per_page=10"
将相同的想法应用于api.github.com/users
结果的第一个“页面”将是10个用户。