Is there an official host uri for Gitlab API? -
is possible use gitlab api official gitlab server? mean www.gitlab.com
. can't find host uri. here api: https://docs.gitlab.com/ce/api/
while the documention mention https://gitlab.example.com/api/v3/...
, still able apply api gitlab.com itself.
you use urls https://gitlab.com/api/v3/...
described in this issue
https://gitlab.com/api/v3/projects?private_token=...
or here (for creating new project):
curl --header "private-token: token" -d "name=test" "https://gitlab.com/api/v3/projects"
Comments
Post a Comment