[Solved] Example of getting follower list / JS SDK

Parse the object…

user.streams is an object/array containing one or more streams.

You need to iterate.

$('#get-follower_list button').click(function() {
Twitch.api({ method: 'streams/followed' }, function (error, user) {
	console.log(user.streams);
  });
})

Will show you whats going on in your console.

for (var x=0;x<user.streams.length;x++) {
    console.log(user.streams[x];
}

Is a quick n’ dirty iterator.

And yes streams/followed will only returns live streams you follow, if you want ALL channels you follow check this endpoint instead Twitch Docs, Channels a user follows