라이선스 API
Tier: Free, Premium, Ultimate
Offering: GitLab.com, Self-managed, GitLab Dedicated
GitLab에서는 다양한 오픈 소스 라이선스 템플릿을 사용할 수 있는 API 엔드포인트가 제공됩니다. 각종 라이선스의 조건에 대해 더 알아보려면 이 사이트나 다른 많은 온라인 자료를 참고하세요.
게스트 역할을 가진 사용자는 라이선스 템플릿에 액세스할 수 없습니다. 자세한 내용은 프로젝트 및 그룹 가시성을 참고하세요.
라이선스 템플릿 목록
모든 라이선스 템플릿을 가져옵니다.
GET /templates/licenses
속성 | 유형 | 필수 여부 | 설명 |
---|---|---|---|
popular
| boolean | no | 전달하면 인기 있는 라이선스만 반환 |
curl "https://gitlab.example.com/api/v4/templates/licenses?popular=1"
예시 응답:
[
{
"key": "apache-2.0",
"name": "Apache License 2.0",
"nickname": null,
"featured": true,
"html_url": "http://choosealicense.com/licenses/apache-2.0/",
"source_url": "http://www.apache.org/licenses/LICENSE-2.0.html",
"description": "A permissive license that also provides an express grant of patent rights from contributors to users.",
"conditions": [
"include-copyright",
"document-changes"
],
"permissions": [
"commercial-use",
"modifications",
"distribution",
"patent-use",
"private-use"
],
"limitations": [
"trademark-use",
"no-liability"
],
"content": " Apache License\n Version 2.0, January 2004\n [...]"
},
{
"key": "gpl-3.0",
"name": "GNU General Public License v3.0",
"nickname": "GNU GPLv3",
"featured": true,
"html_url": "http://choosealicense.com/licenses/gpl-3.0/",
"source_url": "http://www.gnu.org/licenses/gpl-3.0.txt",
"description": "The GNU GPL is the most widely used free software license and has a strong copyleft requirement. When distributing derived works, the source code of the work must be made available under the same license.",
"conditions": [
"include-copyright",
"document-changes",
"disclose-source",
"same-license"
],
"permissions": [
"commercial-use",
"modifications",
"distribution",
"patent-use",
"private-use"
],
"limitations": [
"no-liability"
],
"content": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n [...]"
},
{
"key": "mit",
"name": "MIT License",
"nickname": null,
"featured": true,
"html_url": "http://choosealicense.com/licenses/mit/",
"source_url": "http://opensource.org/licenses/MIT",
"description": "A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.",
"conditions": [
"include-copyright"
],
"permissions": [
"commercial-use",
"modifications",
"distribution",
"private-use"
],
"limitations": [
"no-liability"
],
"content": "The MIT License (MIT)\n\nCopyright (c) [year] [fullname]\n [...]"
}
]
단일 라이선스 템플릿
단일 라이선스 템플릿을 가져옵니다. 라이선스 플레이스홀더를 대체하기 위해 매개변수를 전달할 수 있습니다.
GET /templates/licenses/:key
속성 | 유형 | 필수 여부 | 설명 |
---|---|---|---|
key
| string | yes | 라이선스 템플릿의 키 |
project
| string | no | 저작권이 있는 프로젝트 이름 |
fullname
| string | no | 저작권 보유자의 전체 이름 |
참고:
fullname
매개변수를 생략하더라도 요청을 인증하면, 인증된 사용자의 이름이 저작권 보유자 플레이스홀더를 대체합니다.
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/templates/licenses/mit?project=My+Cool+Project"
예시 응답:
{
"key": "mit",
"name": "MIT License",
"nickname": null,
"featured": true,
"html_url": "http://choosealicense.com/licenses/mit/",
"source_url": "http://opensource.org/licenses/MIT",
"description": "A permissive license that is short and to the point. It lets people do anything with your code with proper attribution and without warranty.",
"conditions": [
"include-copyright"
],
"permissions": [
"commercial-use",
"modifications",
"distribution",
"private-use"
],
"limitations": [
"no-liability"
],
"content": "The MIT License (MIT)\n\nCopyright (c) 2016 John Doe\n [...]"
}