Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我想使用这个 api 获取 github 用户时:https://api.github.com/users它给了我正好 46 个用户。我怎样才能获取例如其中的 10 个?
https://api.github.com/users
您可以尝试在per_pageAPI URL 中添加指令
per_page
通过传递 per_page 参数,您可以指定希望每个页面返回多少项,最多 100 项。 让我们尝试询问关于 10 项addClass: curl -I "https://api.github.com/search/code?q=addClass+user:mozilla&per_page=10"
通过传递 per_page 参数,您可以指定希望每个页面返回多少项,最多 100 项。 让我们尝试询问关于 10 项addClass:
addClass
curl -I "https://api.github.com/search/code?q=addClass+user:mozilla&per_page=10"
将相同的想法应用于api.github.com/users
api.github.com/users
结果的第一个“页面”将是 10 个用户。