Skip to content

Instantly share code, notes, and snippets.

@vtambourine
Created September 28, 2017 14:47
Show Gist options
  • Save vtambourine/1eb8d08706e4e470c0c4d49396201e0a to your computer and use it in GitHub Desktop.
Save vtambourine/1eb8d08706e4e470c0c4d49396201e0a to your computer and use it in GitHub Desktop.
$.ajax({
url: 'https://api.schiphol.nl/public-flights/flights',
headers: {
'ResourceVersion': 'v3',
},
dataType: 'json',
data: {
app_id: window.B.appId,
app_key: window.B.appKey,
flightdirection: 'D',
includedelays: true,
sort: '+scheduletime'
},
context: this,
success: function (data, status, xhr) {
console.log(data)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment