var data = null; var xhr = new XMLHttpRequest(); xhr.withCredentials = true; xhr.addEventListener("readystatechange", function () { if (this.readyState === this.DONE) { console.log(this.responseText); } }); xhr.open("GET", "https://api-football-v1.p.rapidapi.com/v2/odds/bookmakers/"); xhr.setRequestHeader("x-rapidapi-host", "api-football-v1.p.rapidapi.com"); xhr.setRequestHeader("x-rapidapi-key", "fa93857644mshdf07cca41bfa840p1429d4jsn5c634c22fde7"); xhr.send(data);
Showing posts from March, 2019Show all