SaeTClientV2::querymid PHP Method

querymid() public method

对应API:{@link http://open.weibo.com/wiki/2/statuses/querymid statuses/querymid}
public querymid ( integer | string $id, integer $type = 1, integer $is_batch ) : array
$id integer | string 需要查询的微博(评论、私信)ID,批量模式下,用半角逗号分隔,最多不超过20个。
$type integer 获取类型,1:微博、2:评论、3:私信,默认为1。
$is_batch integer 是否使用批量模式,0:否、1:是,默认为0。
return array
    function querymid($id, $type = 1, $is_batch = 0)
    {
        $params = array();
        $params['id'] = $id;
        $params['type'] = intval($type);
        $params['is_batch'] = intval($is_batch);
        return $this->oauth->get('statuses/querymid', $params);
    }
SaeTClientV2