var settings = {
"async": true,
"crossDomain": true,
"url": "https://urlexampleapi.com",
"method": "GET",
"headers": {
"Content-Type": "application/json; charset=utf-8",
"Accept": "application/json",
"appKey": "mykeyhere",
"appToken": "mytokenhere"
}
}
$.ajax(settings).done(function (response) {
console.log(response);
});
大家好,我想向某个api发出此请求,但我知道在标题上传递我的凭据是不安全的。 在这种情况下适用的最佳做法是什么? 任何建议将不胜感激
谢谢!