Я использую эту функцию:
var getJSON = function(url, callback) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'json';
xhr.onload = function() {
var status = xhr.status;
if (status === 200) {
callback(null, xhr.response);
} else {
callback(status, xhr.response);
}
};
xhr.send();
};
вызов функции:
getJSON('http://localhost:8080/job/'+jobName+'/lastBuild/api/json?tree=timestamp',
function(err, data) {
if (err !== null) {
console.log('Something went wrong: ' + err);
} else {
console.log('Your query count: ' + data.query.count);
}
});
Я получаю 403 ошибки ведьма указывает на необходимые полномочия