I guess if the response came up with "created_at" it means true, "error" means false.
I'm pretty sure that guy grabs the info from the link i gave you.

Here is the code. You can expand from there.
Note: You need to load $json snippet ( http://www.mircscripts.org/comments.php?cid=4407 ) into your remote.

usage: /followcheck <follow> <username>

Code:
alias followcheck {
  var %follow $1
  var %username $iif($left($2,1) == $chr(35),$right($2,-1),$2)
  var %url $+(https://api.twitch.tv/kraken/users/,%follow,/follows/channels/,%username)

  jsonclearcache
  var %error $json(%url,error) 
  if !%error { 
    echo -tag %follow is follower of %username  
  }
  else { 
    echo -tag %follow is not follower of %username  
  }
}


Last edited by blessing; 04/06/14 03:48 AM.