화요일, 12월 10, 2024
HomeWindowsSonarQube Web API 프로젝트 (components) 목록 가져오기

SonarQube Web API 프로젝트 (components) 목록 가져오기

타 Front End Site에서 SunarQube Data를 가져와서 화면에 구현할 경우
프로젝트 목록을 구해와서 보여줘야 할경우 사용하시면 됩니다.

호출 URL : http://localhost/sonarqube/api/components/search_projects?f=analysisDate, leakPeriodDate

실행예시 : 

{
    "paging": {
        "pageIndex": 1,
        "pageSize": 100,
        "total": 2
    },
    "components": [
        {
            "organization": "default-organization",
            "id": "AV-ZbMV4cp9-j_guO41I",
            "key": "project:java_project",
            "name": "java_project",
            "isFavorite": false,
            "analysisDate": "2017-11-13T02:18:56+0000",
            "tags": [],
            "visibility": "public",
            "leakPeriodDate": "2017-11-08T04:25:51+0000"
        },
        {
            "organization": "default-organization",
            "id": "AWyxh7U9gyORcXc214h_",
            "key": "project:test",
            "name": "test",
            "isFavorite": false,
            "tags": [],
            "visibility": "public"
        }
    ],
    "facets": []
}

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular