using the script from my signature to get the first 5 followers of a channel quite easily:

Code:
var %stream = night
JSONOpen -ud followers https://api.twitch.tv/kraken/channels/ $+ %stream $+ /follows/?limit=5
var %x = 0, %followers
while (%x < $JSON(followers, follows, length)) {
  %followers = %followers $json(followers, follows, %x, user, name)
  inc %x
}
; %followers contains the first 5 followers


Last edited by FroggieDaFrog; 21/02/15 10:59 AM.