Hi,
Guys i have been stuck on the task for 5 hours now, i am using this url to get json from also i add the new alternative url provided by FCC to over come key issue , but i keep getting 403 error -
https://wind-bow.glitch.me/twitch-api/streams/ESL_SC2 , this is a sample url(it works )
But if i add more strams separed by comma it does not work
i use, i also do not know how to add more streams, where am i going wrong , can you please suggest i use pure JS like this
///////----------------------------
function allStream(){
var myRequest = new XMLHttpRequest();
var url = “https://wind-bow.glitch.me/twitch-api/streams/ESL_SC2”;
myRequest.open(“GET”, url, true);
myRequest.onload = function (){
var ourData = JSON.parse(myRequest.responseText);
console.log(ourData);
};
myRequest.send();
}
/////------------------------------------------------
Thanks