我想使用 JS 从我的 JIRA 帐户中提取数据,因为我想实现自动化,即时间跟踪。
它将跟踪时间,现有资源是否有足够的时间/带宽来交付即将发布的JIRA票证。
请帮助!
答案 0 :(得分:2)
您应将http://lessons.goxtk.com/11/与REST-API of JIRA结合使用。这是您应该已经完成的有关角度的第一个教程。
根据评论进行编辑: JIRA REST API和JQL应该可以工作。它应该看起来像这样:
$http({
method: "GET",
url: 'http://my-url/rest/api/2/search?jql=' +
'reporter=reporterXY' +
'&project=projectXY'
}).then(function successCallback(response) {
return response.data;
}, function errorCallback() {
console.log("Error calling API")
});