我们拥有自己的Gitlab-CE回购。如何获取所有用户的列表?我做..
$ curl -H "Project-Token: dkjdlkfjlfj" https://gitlab.domain.com/api/v3/users
但由于分页,我只能得到其中的20个,这是默认值。我如何获得所有用户?
答案 0 :(得分:2)
您无法完全禁用GitLab API的分页。
但是,您可以通过per_page
网址参数{/ 3>} increase the max number of returned results from 20 to 100
$ curl -H "Project-Token: dkjdlkfjlfj" https://gitlab.domain.com/api/v3/users?per_page=100
之后,就是要解雇多个获取所有用户的请求。