gitlab如何查询项目ID

最近在研究通过API获取gitlab仓库代码提交记录:官方API
在这里插入图片描述
发现API中是使用The ID or URL-encoded path of the project 来区分项目的。
为了方便与准确当然是使用ID最好了,对于自己是仓库管理员的项目,projectID是比较方面找到的,路径如下

Settings -> General project settings -> Expand -> Project ID

但是如果自己仅能访问,无法进入设置界面的仓库怎么获取Project ID呢?
方法有二:

  • 方法一:直接get请求
    查询指定项目:https://gitlab.com/api/v4/projects?search=projectname
    查询完整列表:https://gitlab.com/api/v4/projects
    但是这样的话,只会显示public的项目,如果想要查询私有仓库,需要携带参数private token

个人账号-Profile Settings-account 生成api private token
在这里插入图片描述
api/v3 版本
https://gitlab.example.com/api/v3/projects?simple=true&private-token= <your_access_token>

api/v4 版本
curl --header “PRIVATE-TOKEN: <your_access_token>” “https://gitlab.example.com/api/v4/projects?simple=true”

方法二(最快捷):
进入目标项目页面-显示网页源代码,直接搜索:project_id。
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值