通过角度形式创建JIRA问题

时间:2017-05-29 07:08:31

标签: rest angular jira jira-rest-api

尝试使用rest api抛出403 forbidden错误从angularjs创建一个问题。新的,任何帮助将不胜感激。

错误:

  

对预检请求的响应未通过访问控制检查:否   请求中存在“Access-Control-Allow-Origin”标头   资源。因此不允许来源“http://localhost:8080”   访问。响应的HTTP状态代码为403。

$http({
    method: "POST",
    url: 'https://jira.ab.com/rest/api/2/search',
    beforeSend: function(xhr) {
        xhr.setRequestHeader("Authorization", "Basic " +
            btoa('abc@ab.com' + ":" + '***'));
    },
    headers: {
        'Content-Type': 'application/json'
    },
    data: JSON.stringify({
        jql: {
            project: "JQR",
            maxResults: 20,
        }
    })
}).then(function successCallback(response) {
    return response.data;
}, function errorCallback() {
    console.log("Error calling API")
});

0 个答案:

没有答案