我正在尝试使用 ana ajax 请求从外部页面获取一些详细信息。由于我正在从服务器返回答案,因此对我来说请求工作正常,在控制台中我什至可以找到所需的信息。但是,我的代码给了我一个错误并且无法弄清楚为什么,有人可以帮忙吗?请参阅响应后发生错误的图像!
这是用于获取ajax请求的代码:
var auth_id = "xxxxxxxxxxxxxxxx";
var auth_token = "xxxxxxxxxxxxxxxx";
var jSON_Object = {
'auth_id': auth_id,
'auth_token': auth_token
};
var calluuid = null;
//Anruf aufnehmen
function RecordTheCall() {
var result = null;
var post = $.ajax({
url: "https://api.plivo.com/v1/Account/"+auth_id+"/Call/?status=live",
type: "GET",
dataType: "jsonp",
contentType: "application/json",
jsonCallback: "parseResponse",
data: JSON.stringify(jSON_Object),
success: function(res) {
console.log("1");
console.log(res);
//get uuid from active call
calluuid = res.call_uuid;
RecordIt();
},
error: function(err){
console.log("E1");
console.log(err);
}
});
}