我正在尝试使用postmates API,它首先要求我们使用 http 基本身份验证对自己进行身份验证。下面username
代码中的字段是我们插入private API key
.
<script>
$(document).ready(function(){
// Request with custom header
$.ajax({
url: ' http://username:@api.postmates.com',
type: 'GET',
dataType: 'jsonp',
success: function(response) { alert("Success"); },
error: function(error) {alert(error); }
});
});
</script>
我们得到的错误是
XMLHttpRequest 无法加载 http://api.postmates.com/?callback=jQuery112008309037607698633_1462052396724&_=1462052396725。预检响应无效(重定向)