SaeTClientV2::hot_favorites PHP Method

hot_favorites() public method

对应API:{@link http://open.weibo.com/wiki/2/suggestions/favorites/hot suggestions/favorites/hot}
public hot_favorites ( integer $page = 1, integer $count = 20 ) : array
$page integer 返回页码,默认1。选填
$count integer 每页返回结果数,默认20。选填
return array
    function hot_favorites($page = 1, $count = 20)
    {
        $params = array();
        $params['count'] = $count;
        $params['page'] = $page;
        return $this->oauth->get('suggestions/favorites/hot', $params);
    }
SaeTClientV2