org\oauth\Driver::url PHP Method

url() protected method

获取指定API请求的URL
protected url ( string $api, string $fix = '' ) : string
$api string API名称
$fix string api后缀
return string 请求的完整URL
    protected function url($api, $fix = '')
    {
        return $this->apiBase . $api . $fix;
    }