jQueryまたはnode.jsで何かを使用してjsonファイルに非同期クロスドメインリクエスト(GET)を行う方法は? 私は自分のAPIを持っていて、ファイルにリクエストをするだけです
$.ajax({
type: 'GET',
url: "https://api.flightstats.com/flex/airports/rest/v1/json/active?appId=3a311b8b&appKey=5d67203e8afab7fe8d01e0debf177171",
processData: true,
data: {},
dataType: "json"
});
結果
XMLHttpRequest
XMLHttpRequest cannot load https://api.flightstats.com/flex/airports/rest/v1/json/active?appId=3a311b8b&appKey=5d67203e8afab7fe8d01e0debf177171. Origin https://developer.flightstats.com is not allowed by Access-Control-Allow-Origin.
また
$.ajax({
type: 'GET',
url: "https://api.flightstats.com/flex/airports/rest/v1/json/active?appId=3a311b8b&appKey=5d67203e8afab7fe8d01e0debf177171?callback?",
processData: true,
data: {},
dataType: "jsonp"
});
結果
undefined