Okay, im a little confused, i have my API Key,
But which one of the codes.
jQuery
$.ajax({
type: ‘GET’,
url: ‘https://api.twitch.tv/kraken/channels/twitch’,
headers: {
‘Client-ID’: ‘axjhfp777tflhy0yjb5sftsil’
},
success: function(data) {
console.log(data);
}
});
cURL
curl -i -H ‘Accept: application/vnd.twitchtv.v3+json’\
-H ‘Client-ID: axjhfp777tflhy0yjb5sftsil’\
‘https://api.twitch.tv/kraken/channels/twitch’
PHP
And where do i put the code???