git API调用示例,用于指定包含访问令牌的分页

时间:2013-10-25 14:47:39

标签: git github github-api

我有这个:

curl https://api.github.com/orgs/company/repos?access_token=<token>

它只返回前30个结果,我读过的是默认值。我如何修改它以将分页设置为包括其余结果?

1 个答案:

答案 0 :(得分:4)

我的问题是,在尝试将page=添加到呼叫时,我没有使用引号。因此,如果其他任何人都像我一样密集,那么curl命令将如下所示:

curl -i 'https://api.github.com/orgs/company/repos?access_token=<token>&page=2' 

以及您拥有的页数等等。