API请求方法

时间:2018-01-24 18:28:42

标签: javascript jquery ajax api

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发出此请求,但我知道在标题上传递我的凭据是不安全的。 在这种情况下适用的最佳做法是什么? 任何建议将不胜感激

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以更喜欢使用https,并在以下问题中提及其他方法

how-to-send-password-securely-over-http