SaeTClientV2::repost_daily PHP Method

repost_daily() public method

对应API:{@link http://open.weibo.com/wiki/2/statuses/hot/repost_daily statuses/hot/repost_daily}
public repost_daily ( integer $count = 20, integer $base_app ) : array
$count integer 返回的记录条数,最大不超过50,默认为20。
$base_app integer 是否只获取当前应用的数据。0为否(所有数据),1为是(仅当前应用),默认为0。
return array
    function repost_daily($count = 20, $base_app = 0)
    {
        $params = array();
        $params['count'] = intval($count);
        $params['base_app'] = intval($base_app);
        return $this->oauth->get('statuses/hot/repost_daily', $params);
    }
SaeTClientV2