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
}

在此做个笔记

相关推荐
PM老周20 小时前
Jira、ONES、ClickUp 对比:哪款研发管理软件更适合中国研发团队?
jira·项目管理工具·ones·clickup·研发管理平台·研发流程管理
姚青&3 天前
流程管理平台 - JIRA
jira
无心水9 天前
【Hermes:MCP 与工具实战】28、GitHub MCP 深度实战:PR 审查、Issue、自动汇报全搞定
人工智能·github·issue·openclaw·养龙虾·hermes·honcho
一袋米扛几楼9812 天前
【Git】规范化协作:详解 GitHub 工作流中的 Issue、Branch 与 Pull Request 最佳实践
前端·git·github·issue
PM老周13 天前
2026年 Jira 替代软件选型测评:支持项目管理与知识库管理的研发管理平台
项目管理·jira·项目管理工具·jira 替代方案
AC赳赳老秦14 天前
项目闭环管理:用 OpenClaw 对接 Jira / 禅道,实现需求 - 任务 - 进度 - 验收全流程自动化
运维·人工智能·python·自动化·devops·jira·openclaw
SL-staff16 天前
2026 企业项目管理工具选型:JIRA、飞书、JVS企业计划功能对比
项目管理·飞书·团队开发·jira·okr·jvs企业计划·决策流程
fzil00122 天前
GitHub 项目自动 Star + Issue 监控
人工智能·github·issue
夜珀1 个月前
AtomGit上的Issue与Pull Request实战
issue
hillstream31 个月前
启用一个项目的RTM
jira