SaeTClientV2::friends_chain_followers PHP Method

friends_chain_followers() public method

对应API:{@link http://open.weibo.com/wiki/2/friendships/friends_chain/followers friendships/friends_chain/followers}
public friends_chain_followers ( integer $uid, integer $page = 1, integer $count = 50 ) : array
$uid integer 指定的关注目标用户UID。
$page integer 返回结果的页码,默认为1。
$count integer 单页返回的记录条数,默认为50。
return array
    function friends_chain_followers($uid, $page = 1, $count = 50)
    {
        $params = array();
        $this->id_format($uid);
        $params['uid'] = $uid;
        $params['count'] = $count;
        $params['page'] = $page;
        return $this->oauth->get('friendships/friends_chain/followers', $params);
    }
SaeTClientV2