Then iterate the object
Console.log will do blind dump out everything, it only goes to a certain depth, by default
using nodejs, for example
const got = require('got');
got({
url: 'https://api.twitch.tv/kraken/channels/115307371/follows',
headers: {
"Client-ID": "yourclient",
"Accept": "application/vnd.twitchtv.v5+json",
},
responseType: 'json'
})
.then(resp => {
for (var x=0;x<resp.body.follows.length;x++) {
console.log(resp.body.follows[x]);
}
})
.catch(err => {
console.log(err);
})
You are using bot code for no sane reason.
