有没有办法使用javascript验证另一个域中的API?如果是这样,是否可以使用json数据访问它?
我已尝试过以下代码,但即使用户名和密码正确,也会返回“401 unauthorized”。
$.ajax
({
type: "GET",
url: url,
dataType: 'json',
async: false,
data: '{}',
beforeSend: function (xhr){
xhr.setRequestHeader ("Authorization", "Basic " + btoa(username + ":" + password));
},
success: function (responseData){
console.log(responseData);
}
});