我想知道如何通过rest api获取所有活动jira问题的列表。一旦我得到列表,我计划使用si / jira.issueviews:uri中的issue-xml功能以xml格式下载所有问题。但我没有所有问题的清单。我用google搜索,只提出了与在特定项目下获取问题有关的答案。
答案 0 :(得分:1)
这是我在PHP中使用cURL和REST API进行搜索的方法:
$url = "http://YOUR_SERVER_URL_AND_PORT/rest/api/2/search";
$data = array("jql" => "status not in (Closed, Resolved, Done)","startAt" => 0,"maxResults" => 200);
$httpHeader = array(
'Accept: application/json',
'Content-Type: application/json'
);
try{
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $httpHeader);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERPWD, "USER_NAME:USER_PASS");
$result = curl_exec($ch);
$ch_error = curl_error($ch);
if ($ch_error == '')
$out = $result;
else
$out = json_encode(array('error' => $ch_error));
}catch(Exception $e){
$out = json_encode(array('error' => $e->getMessage()));
}
curl_close($ch);
您需要使用自己的信息更改YOUR_SERVER_URL_AND_PORT,USER_NAME和USER_PASS。
注意:之前的REST查询只会返回您可以看到的问题。如果您需要查看所有问题,则需要在cURL配置中提供Jira Admin凭据。