jira搜索search issue条目rest实用脚本

官方文档链接地址:

The Jira Cloud platform REST API

实用json请求脚本如下:

复制代码
{

                "fields": [
                  "summary",
                  "status"
                ],
                "jql": "project = abc AND summary ~ '【%s】【coverity】' AND component=Coverity",
                "maxResults": 1000,
                "startAt": 0
}

jql字段就是表达式,类似于sql语句里的where条件设定语句,多个条件用"AND"连接

代码示例如下:

复制代码
public static void searchIssueXTKFDT() throws UnirestException {
        JsonNodeFactory jnf = JsonNodeFactory.instance;
        ObjectNode payload = jnf.objectNode();
        {
            ArrayNode fields = payload.putArray("fields");
            fields.add("summary");
            fields.add("status");
            //fields.add("assignee");
            payload.put("jql", "project = TEST");
            payload.put("maxResults", 100);
            payload.put("startAt", 0);
        }

        // Connect Jackson ObjectMapper to Unirest
        Unirest.setObjectMapper(new ObjectMapper() {
            private com.fasterxml.jackson.databind.ObjectMapper jacksonObjectMapper
                    = new com.fasterxml.jackson.databind.ObjectMapper();

            public <T> T readValue(String value, Class<T> valueType) {
                try {
                    return jacksonObjectMapper.readValue(value, valueType);
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            public String writeValue(Object value) {
                println("writeValue=====" + value);
                try {
                    return jacksonObjectMapper.writeValueAsString(value);
                } catch (JsonProcessingException e) {
                    throw new RuntimeException(e);
                }
            }
        });


        //"https://your-domain.atlassian.net/rest/api/2/search"
        HttpResponse<JsonNode> response = Unirest.post("https://devops-jira.example.com/rest/api/2/search")
                .basicAuth("USER", "TOKEN")
                .header("Accept", "application/json")
                .header("Content-Type", "application/json")
                .body(payload)
                .asJson();

        JsonNode body = response.getBody();
        JSONObject json = body.getObject();
        JSONArray array = json.getJSONArray("issues");
        int length = array.length();
        System.out.println("length = " + length);
        ArrayList<String> status = new ArrayList<>();
        for (int i = 0; i < length; i ++){
            JSONObject object = array.getJSONObject(i);
            String key = object.getString("key");
            String id = object.getJSONObject("fields")
                    .getJSONObject("status")
                    .getString("id");
            status.add(key + "=" + id);
        }
        System.out.println("status = " + status);
        System.out.println(body);
    }

返回结果如下:

复制代码
{
    "expand": "schema,names",
    "total": 8,
    "maxResults": 100,
    "issues": [
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "self": "https://devops-jira.example.com/rest/api/2/issue/867674",
            "id": "867674",
            "fields": {
                "summary": "a test of the crash Main order flow broken",
                "status": {
                    "name": "等待验证",
                    "self": "https://devops-jira.example.com/rest/api/2/status/11601",
                    "description": "",
                    "iconUrl": "https://devops-jira.example.com/images/icons/statuses/generic.png",
                    "id": "11601",
                    "statusCategory": {
                        "colorName": "yellow",
                        "name": "In Progress",
                        "self": "https://devops-jira.example.com/rest/api/2/statuscategory/4",
                        "id": 4,
                        "key": "indeterminate"
                    }
                }
            },
            "key": "TEST-10"
        },
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "self": "https://devops-jira.example.com/rest/api/2/issue/861855",
            "id": "861855",
            "fields": {
                "summary": "fawtwa4twa这是一个测试",
                "status": {
                    "name": "取消",
                    "self": "https://devops-jira.example.com/rest/api/2/status/10124",
                    "description": "",
                    "iconUrl": "https://devops-jira.example.com/images/icons/statuses/generic.png",
                    "id": "10124",
                    "statusCategory": {
                        "colorName": "green",
                        "name": "Done",
                        "self": "https://devops-jira.example.com/rest/api/2/statuscategory/3",
                        "id": 3,
                        "key": "done"
                    }
                }
            },
            "key": "TEST-9"
        },
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "self": "https://devops-jira.example.com/rest/api/2/issue/861924",
            "id": "861924",
            "fields": {
                "summary": "a test of the crash Main order flow broken",
                "status": {
                    "name": "激活",
                    "self": "https://devops-jira.example.com/rest/api/2/status/10354",
                    "description": "新发现的缺陷",
                    "iconUrl": "https://devops-jira.example.com/images/icons/statuses/generic.png",
                    "id": "10354",
                    "statusCategory": {
                        "colorName": "blue-gray",
                        "name": "To Do",
                        "self": "https://devops-jira.example.com/rest/api/2/statuscategory/2",
                        "id": 2,
                        "key": "new"
                    }
                }
            },
            "key": "TEST-8"
        },
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "self": "https://devops-jira.example.com/rest/api/2/issue/861835",
            "id": "861835",
            "fields": {
                "summary": "wewrwr",
                "status": {
                    "name": "重新打开",
                    "self": "https://devops-jira.example.com/rest/api/2/status/10359",
                    "description": "问题未彻底修复",
                    "iconUrl": "https://devops-jira.example.com/images/icons/statuses/generic.png",
                    "id": "10359",
                    "statusCategory": {
                        "colorName": "yellow",
                        "name": "In Progress",
                        "self": "https://devops-jira.example.com/rest/api/2/statuscategory/4",
                        "id": 4,
                        "key": "indeterminate"
                    }
                }
            },
            "key": "TEST-7"
        },
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "self": "https://devops-jira.example.com/rest/api/2/issue/861664",
            "id": "861664",
            "fields": {
                "summary": "a test of the crash Main order flow broken",
                "status": {
                    "name": "需求规划",
                    "self": "https://devops-jira.example.com/rest/api/2/status/10500",
                    "description": "",
                    "iconUrl": "https://devops-jira.example.com/images/icons/statuses/generic.png",
                    "id": "10500",
                    "statusCategory": {
                        "colorName": "blue-gray",
                        "name": "To Do",
                        "self": "https://devops-jira.example.com/rest/api/2/statuscategory/2",
                        "id": 2,
                        "key": "new"
                    }
                }
            },
            "key": "TEST-6"
        },
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "self": "https://devops-jira.example.com/rest/api/2/issue/861719",
            "id": "861719",
            "fields": {
                "summary": "a test of the crash Main order flow broken",
                "status": {
                    "name": "需求规划",
                    "self": "https://devops-jira.example.com/rest/api/2/status/10500",
                    "description": "",
                    "iconUrl": "https://devops-jira.example.com/images/icons/statuses/generic.png",
                    "id": "10500",
                    "statusCategory": {
                        "colorName": "blue-gray",
                        "name": "To Do",
                        "self": "https://devops-jira.example.com/rest/api/2/statuscategory/2",
                        "id": 2,
                        "key": "new"
                    }
                }
            },
            "key": "TEST-5"
        },
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "self": "https://devops-jira.example.com/rest/api/2/issue/861243",
            "id": "861243",
            "fields": {
                "summary": "这是一个测试",
                "status": {
                    "name": "需求规划",
                    "self": "https://devops-jira.example.com/rest/api/2/status/10500",
                    "description": "",
                    "iconUrl": "https://devops-jira.example.com/images/icons/statuses/generic.png",
                    "id": "10500",
                    "statusCategory": {
                        "colorName": "blue-gray",
                        "name": "To Do",
                        "self": "https://devops-jira.example.com/rest/api/2/statuscategory/2",
                        "id": 2,
                        "key": "new"
                    }
                }
            },
            "key": "TEST-2"
        },
        {
            "expand": "operations,versionedRepresentations,editmeta,changelog,renderedFields",
            "self": "https://devops-jira.example.com/rest/api/2/issue/860777",
            "id": "860777",
            "fields": {
                "summary": "testtesttest",
                "status": {
                    "name": "开发处理中",
                    "self": "https://devops-jira.example.com/rest/api/2/status/10355",
                    "description": "",
                    "iconUrl": "https://devops-jira.example.com/images/icons/statuses/generic.png",
                    "id": "10355",
                    "statusCategory": {
                        "colorName": "yellow",
                        "name": "In Progress",
                        "self": "https://devops-jira.example.com/rest/api/2/statuscategory/4",
                        "id": 4,
                        "key": "indeterminate"
                    }
                }
            },
            "key": "TEST-1"
        }
    ],
    "startAt": 0
}

在此做个笔记

相关推荐
MaisieKim_2 天前
Jira、PingCode、Redmine等18款缺陷管理工具对比评测
jira·redmine·pingcode
hyhrosewind11 天前
基础(项目管理工具:JIRA、禅道)
jira·缺陷管理·禅道·项目管理工具·jira安装·禅道安装
测试渣1 个月前
JIRA/Xray测试管理工具的最佳实践:从基础到高阶的全场景指南
测试工具·自动化·jira
公众号:ITIL之家1 个月前
ServiceNow vs Jira:哪个更适合中国式ITIL落地?
jira
龙智DevSecOps解决方案1 个月前
汽车行业敏捷开发实践:基于Atlassian工具链的全流程解决方案(Jira、Confluence、Jira Service Management等)
atlassian·敏捷流程·jira·汽车软件开发
hillstream32 个月前
jira操作笔记
笔记·jira
龙智DevSecOps解决方案2 个月前
需求管理工具选型指南:Jama Connect +Jira vs Word/Excel+Jira
项目管理·atlassian·需求管理·jira·jamaconnect
跟YY哥学Jira2 个月前
解密 Atlassian Cloud:创新驱动的项目管理之道
经验分享·项目管理·微信公众平台·jira·jira认证
唐古乌梁海2 个月前
【jira】用到几张表
jira
龙智DevSecOps解决方案2 个月前
项目管理工具Jira在营销工作管理中的应用与实践
项目管理·atlassian·jira·confluence