1. 如何使用github API读取用户信息,请看https://blog.csdn.net/u013288190/article/details/107233235
2. 分页只需要在url后加page(第几页)
和per_page(每页几个数据)
参数。
https://api.github.com/search/users?q=fullname:Ruan&page=2&per_page=3
如果没有任何分页数字,那么默认为per_page=
30条数据。
2024-01-10 23:01:22
1. 如何使用github API读取用户信息,请看https://blog.csdn.net/u013288190/article/details/107233235
2. 分页只需要在url后加page(第几页)
和per_page(每页几个数据)
参数。
https://api.github.com/search/users?q=fullname:Ruan&page=2&per_page=3
如果没有任何分页数字,那么默认为per_page=
30条数据。