Created
April 3, 2018 01:07
-
-
Save n8finch/8a9a6498f1d29288e7d2844c57f4c0c0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Get the Deliver store | |
* @param {[type]} theLocation [description] | |
* @return {[type]} Only one store location will be returned. | |
*/ | |
const getTheDeliveryStore = function( theLocation ) { | |
var data = null; | |
var xhr = new XMLHttpRequest(); | |
xhr.withCredentials = true; | |
xhr.addEventListener("readystatechange", function () { | |
if (this.readyState === 4) { | |
console.log(this.responseText); | |
} | |
}); | |
xhr.open("GET", "https://ordering.api.olo.com/v1.1/restaurants/near?lat=LATITUDE&long=-LONGITUDE&radius=20&limit=10&key=APIKEYHERE"); | |
xhr.setRequestHeader("accept", "application/json"); | |
xhr.setRequestHeader("access-control-request-headers", "*"); | |
xhr.setRequestHeader("cache-control", "no-cache"); | |
xhr.send(data); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment