博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JIRA 初体验
阅读量:6449 次
发布时间:2019-06-23

本文共 1434 字,大约阅读时间需要 4 分钟。

JIRA 使用神奇的JQL查询数据,很nice啊 !

官网API:   https://docs.atlassian.com/jira/REST/latest/#d2e2344

测试一下search: 

/rest/api/2/search

request query parameters

parameter value description

jql

a JQL query string

startAt

the index of the first issue to return (0-based)

maxResults

the maximum number of issues to return (defaults to 50). The maximum allowable value is dictated by the JIRA property 'jira.search.views.default.max'. If you specify a value that is higher than this number, your search results will be truncated.

validateQuery

Default:true

whether to validate the JQL query

fields

the list of fields to return for each issue. By default, all navigable fields are returned.

expand

A comma-separated list of the parameters to expand.

其中jql 是一个JQL的query string。  参考资料:

http://homepages.ecs.vuw.ac.nz/~djp/jql/examples.html

 

测试代码:

string url = baseURL + "/search?jql=assignee=" +username +" and (status=1 or status=2)";HttpWebRequest req = WebRequest.Create(url) as HttpWebRequest;try{    req.ContentType = "application/json";      req.Headers.Add("Authorization", "Basic " + m_authString);      using (HttpWebResponse resp = req.GetResponse() as HttpWebResponse)      {                StreamReader reader = new StreamReader(resp.GetResponseStream());                    response = reader.ReadToEnd();      }}catch (Exception e){     response = e.Message;     m_errorMsg = e.Message;     return false;}

也可以直接装好以后,用url直接回车访问上述创建的链接,会直接得到数据信息到页面。

转载地址:http://oqowo.baihongyu.com/

你可能感兴趣的文章
《树莓派Python编程入门与实战》——第2章 认识Raspbian Linux发行版 2.1 了解Linux...
查看>>
阿里感悟 (十七)- 计划和规划能力
查看>>
《Java并发编程从入门到精通》显示锁Lock和ReentrantLock
查看>>
《Servlet、JSP和Spring MVC初学指南》——1.12 小结
查看>>
《精通软件性能测试与LoadRunner最佳实战》—第2章2.5节 测试脚本编写
查看>>
《解读NoSQL》——第1章 NoSQL:明智的选择
查看>>
算力即权力
查看>>
《Nmap渗透测试指南》—第6章6.8节目标主机随机排序
查看>>
《Unity 3.x游戏开发实例》——2.8节百分之一的灵感
查看>>
阿里云前端周刊 - 往期回顾(1-3)
查看>>
《Axure RP8 网站和APP原型制作 从入门到精通》一第1章 设计过程概述1.1 设计过程...
查看>>
《嵌入式Linux应用开发完全手册》——1.2 基于ARM处理器的嵌入式Linux系统
查看>>
“数”成金|大数据的正确打开及使用方法
查看>>
《精通Unreal游戏引擎》一导读
查看>>
如何把老旧笔记本变成一部 Chromebook
查看>>
阿里云肖力:专业云计算服务商有能力提前解决勒索病毒隐患
查看>>
Linux下打包压缩war、解压war包和jar命令
查看>>
Vertica的这些事<六>—— SQL Server、Oracle、MySQL和Vertica数据库常用函数对比...
查看>>
《C语言及程序设计》实践参考——复数结构体
查看>>
舆情中的热词分析,没你想的那么简单
查看>>