嗨,我正在尝试使用 api 来获取时间和数据,但在日志中总是出现错误 403 被禁止。Api:https://www.mashape.com/parsify/format#!endpoint-Phone-Number。有没有ajax调用错误?
$.ajax({
type: 'GET',
headers: {"X-Mashape-Authorization": "SEK2****7Egqx******hshVCG"},
async:false,
//dataType: "jsonp",
url: 'https://parsify-format.p.mashape.com/api/format/time?value=1362446014869&lang=it',
success: function(data) {
console.log(data);
time_now=data;
},
error: function(data) {
console.log("ko" );
}
});