标签: rest github get github-api git-tag
我使用GitHub api,这里描述:GET /repos/:owner/:repo/tags
命令如下:
curl https://api.github.com/repos/skywinder/ActionSheetPicker-3.0/tags
但是这个命令只能获得最后30个标签。
是否可以从GitHub repo接收所有标签?
答案 0 :(得分:4)
我猜测你会被分页拖累:
https://developer.github.com/v3/#pagination
API响应包含用于获取列表中其他页面的链接。