博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Access Jira RESTful API by cURL
阅读量:5290 次
发布时间:2019-06-14

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

 
*******INSTRUCTION FOR GETING RECORDS FROM JIRA by cURL*****************
Jira supply RESTfull API, so we can use cURL to get data. Below is the steps,
1. Install cURL;
2. Use curl to send a Http GET request, the command is as below,(1k records per request);
curl -D- -o c:/jiratest.txt -u
username:password -X GET -H "Content-Type: application/json" http://10.255.7.140:8080/rest/api/2/search?jql="key>CM-7266&maxResults=1000"
3. Edit c:/jiratest.txt, to remove the header and separater(,)
4. Create DB & Collection (jira.jiratest),
   > show databases;
   jira   0.203GB
   local  0.078GB
   > use jira
   switched to db jira
   > show collections;
   jiratest
   system.indexes
   >
   
5. Importing the JSON to Mongodb with below command;
mongoimport -d jira -c jiratest c:/jiratest.txt
6. Done.
 
 

转载于:https://www.cnblogs.com/ECNB/p/4646333.html

你可能感兴趣的文章
【动态规划DP】传娃娃-C++
查看>>
LOJ.121.[离线可过]动态图连通性(线段树分治 按秩合并)
查看>>
201521123072 结对编程
查看>>
最长上升子序列
查看>>
maven 依赖、聚合和继承 (转)
查看>>
selinux介绍/状态查看/开启/关闭
查看>>
DockerAPI版本不匹配的问题
查看>>
Leetcode: Ugly Number II
查看>>
项目立项管理
查看>>
(没时间维护,已下架)博客园第三方客户端-i博客园正式发布App Store
查看>>
map使用实例
查看>>
关于ShapeDrawable应用的一些介绍(上)
查看>>
洛谷 P3984 高兴的津津
查看>>
洛谷 P1308 统计单词数
查看>>
使用GitHub
查看>>
1.25回溯 n皇后问题,素数环,困难的串
查看>>
大量界面刷新时手动Dispose也是有必要的
查看>>
机电传动控制第三周学习笔记
查看>>
删除.gitignore中的在version control中的文件
查看>>
java精确计算、精确计算工具类
查看>>