hello,
I’ve just created a developer account and I’m trying to make automatic searches in a page coded in javascript. :
$.ajax({
type: 'GET',
url: 'https://api.twitch.tv/mgx_drt/search/streams?q=music',
headers: {'Client-ID': 'xxx'},
success: function(json) {
console.log(json);
}});
I don’t have answer from twitch server, and it seems that my api (https://api.twitch.tv/mgx_drt) channel doesn’t exist . Did I miss something in my registration ? Or did I make a mistake in the code ?
There is no error message, I cannot just reach the api server …
thank you for your help