SaeTClientV2::favorites_update_batch PHP Method

favorites_update_batch() public method

对应API:{@link http://open.weibo.com/wiki/2/favorites/tags/update_batch favorites/tags/update_batch}
public favorites_update_batch ( integer $tid, string $tag ) : array
$tid integer 需要更新的标签ID。必填
$tag string 需要更新的标签内容。必填
return array
    function favorites_update_batch($tid, $tag)
    {
        $params = array();
        $params['tid'] = $tid;
        $params['tag'] = $tag;
        return $this->oauth->post('favorites/tags/update_batch', $params);
    }
SaeTClientV2