私はajax GETリクエストをしようとしています。私はヘッダーにキーを含む承認を追加する必要がありますが、実際に追加する方法はわかりません。私はこれを試しましたが、Uncaught SyntaxError:16行目に予期しない識別子があります。ヘッダを追加することと関係があると思います。 apiはRESTなので、JSONを返し、GETでなければなりません。REST APIを使用したAjaxリクエストヘッダー
私のコードは次のようになります。
GET /休憩/アドレス/郵便番号/ 2012ES/30/HTTP/1.1 ホスト::api.postcode
jQuery(document).ready(function($) {
var postcode = '1000AA';
var houseNumber = '4';
var urlPath = 'https://api.postcode.nl/rest/addresses/postcode/'
+ postcode + '/'
+ houseNumber + '/';
console.log(urlPath);
$.ajax({
beforeSend: function(request) {
request.setRequestHeader("Authorization","*****************");
}
url: urlPath
}).then(function(data) {
$('.street').append(data.street);
$('.city').append(data.city);
});
});
ヘッダは次のように来る必要があります。 NL 許可:基本2eTpkU ******
とhttps://api.postcode.nl/rest/addresses/postcode/ {郵便番号}/{houseNumber}/{houseNumberAddition}のようなURL