AJAXリクエストを使用してAPIに接続しようとしていますが、応答はありません。私のヘッダーに問題があるのか、それとも何か他のものにかかわらず、コンソールでエラーが表示されないとデバッグするのは難しいです。AJAXリクエストを使用したAPIからの応答がありません
これは私のAJAX要求である:このAPIから
$.ajax({
url: 'https://api.partners.bazoeka.com/latest/api/postcodecheck?&format=json',
method: 'GET',
crossDomain: true,
beforeSend: function (xhr) {
xhr.setRequestHeader('username:myUsername', 'password:myPassword','apikey:apiKey');
}
}).done(function() {
console.log("connected!");
//do stuff
});
ドキュメントはほとんど情報を提供しています。
Authentication is done by passing the username, password and API key in the header of the HTTP(S) request. For all functions authorization is required. So to be able to do a successful call you have to pass a username, password and an API key
私は私の資格情報が正しい知っている、要求はcURLので正常に動作します:
curl -H"username:myUsername" -H"password:myPassword" -H "apikey:apiKey" "https://api.partners.bazoeka.com/latest/api/postcodecheck?&format=json&postcode=1010AA&housenr=1"
私のAJAXリクエストのヘッダーに問題はありますか? jQueryのドキュメントによると https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/setRequestHeader
ありがとう、これはしかし、解決策になるかもしれませんプリフライト要求に対する応答がアクセス制御チェックを通過しない:要求されたリソースに 'Access-Control-Allow-Origin'ヘッダーが存在しません。したがって、http:// localhostはアクセスが許可されません。応答にHTTPステータスコード500._ –
がありますこれはCORSルールです。つまり、リモートホストがあなたを受け入れていないことを意味します。私はあなたがローカルホストにいるので、これがわからない、あなたは彼らに連絡したり、到達可能な起源で試してみるべきですhttps://developer.mozilla.org/it/docs/Web/HTTP/Headers/Access-Control-Allow -原点 –