Getting followers via API

If you’re looking for total amount of channels followed, Freddy was correct.

If you want to know how many objects are in the follows array that was returned. Then do this.

Twitch.api.get(“channels/:name/follows”).done(function(json){ console.log(json.follows.length); });

EDIT: changed “channels array” to “follows array” and “of followers” to “of channels followed,”