如何在Gitlab仓库中获得所有用户?

问题描述 投票:1回答:1

我们主持您自己的Gitlab-CE回购。如何获取所有用户的列表?我做..

$ curl -H "Project-Token: dkjdlkfjlfj" https://gitlab.domain.com/api/v3/users

但由于分页,我只能得到20个,这是默认的。我如何获得所有用户?

curl gitlab-ce
1个回答
2
投票

您无法完全禁用GitLab API的分页。

但是,你可以通过increase the max number of returned results from 20 to 100 URL参数per_page

$ curl -H "Project-Token: dkjdlkfjlfj" https://gitlab.domain.com/api/v3/users?per_page=100

在那之后,这是一个解雇多个请求以获取所有用户的问题。

© www.soinside.com 2019 - 2024. All rights reserved.