SaeTClientV2::followers_active PHP Method

followers_active() public method

对应API:{@link http://open.weibo.com/wiki/2/friendships/followers/active friendships/followers/active}
public followers_active ( integer $uid, integer $count = 20 ) : array
$uid integer 需要查询的用户UID。
$count integer 返回的记录条数,默认为20,最大不超过200。
return array
    function followers_active($uid, $count = 20)
    {
        $param = array();
        $this->id_format($uid);
        $param['uid'] = $uid;
        $param['count'] = $count;
        return $this->oauth->get('friendships/followers/active', $param);
    }
SaeTClientV2