概述
文档
官方文档:https://docs.gitlab.com/ee/api/
认证方式
官方文档:https://docs.gitlab.com/ee/api/README.html#authentication
OAuth2 tokens
示例:
curl "https://gitlab.example.com/api/v4/projects?access_token=OAUTH-TOKEN"
curl --header "Authorization: Bearer OAUTH-TOKEN" "https://gitlab.example.com/api/v4/projects"
Personal access tokens
Query参数的key为 private_token
;Header参数的key为 PRIVATE-TOKEN
示例:
curl "https://gitlab.example.com/api/v4/projects?private_token=<your_access_token>"
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects"
curl --header "Authorization: Bearer <your_access_token>" "https://gitlab.example.com/api/v4/projects"
Session cookie
cookie的名称: _gitlab_session
Java Client
https://about.gitlab.com/partners/technology-partners/#api-clients
最后
以上就是饱满冬瓜为你收集整理的GitLab API 接入指南文档认证方式Java Client的全部内容,希望文章能够帮你解决GitLab API 接入指南文档认证方式Java Client所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复