我正在尝试使用我从公司获得的卷曲令牌从api中获取一些json数据,但我不知道为什么这不会获取数据
var token = 'c5de7ee89c1925924dbf0cfd0087b9642fb8cd5c';
$.ajax({
url: "https://formhub.org/api/v1/data/north_ghana/8379",
beforeSend: function(xhr) {
xhr.setRequestHeader("Authorization", "Basic " + token);
},
type: 'GET',
dataType: 'json',
contentType: 'application/json',
success: function (data) {
console.log(JSON.stringify(data));
},
error: function(){
alert("Cannot get data");
}
});