You need to make the request using jsonp, example:
$.ajax({
url:'https://api.twitch.tv/kraken/streams/Jonathan_x64',
dataType:'jsonp',
success:function(channel) {
//logic here
}
});
You need to make the request using jsonp, example:
$.ajax({
url:'https://api.twitch.tv/kraken/streams/Jonathan_x64',
dataType:'jsonp',
success:function(channel) {
//logic here
}
});