参数名 | 参数描述 | 类型 | 是否必填 |
Domain | 调用操作存储桶和对象的 API 时自定义请求域名。可以使用模板,如"{$Bucket}.cos.{$Region}.myqcloud.com" ,即在调用 API 时会使用参数中传入的 Bucket 和 Region 进行替换。 | String | 否 |
Protocol | 发请求时用的协议,可选项https:、http:,默认判断当前页面是http: 时使用 http:,否则使用https: | String | 否 |
$bucket = "examplebucket-1250000000";$cosClient = new Qcloud\\Cos\\Client(array('domain' => $bucket . '.file.myqcloud.com', //默认加速域名'schema' => 'https', //协议头部,默认为http'credentials'=> array('secretId' => $secretId,'secretKey' => $secretKey)));
$cosClient = new Qcloud\\Cos\\Client(array('domain' => 'example-cdn-domain.com', //默认加速域名'schema' => 'https', //协议头部,默认为http'credentials'=> array('secretId' => $secretId,'secretKey' => $secretKey)));
$cosClient = new Qcloud\\Cos\\Client(array('domain' => 'example-cos-domain.com', //默认加速域名'schema' => 'https', //协议头部,默认为http'credentials'=> array('secretId' => $secretId,'secretKey' => $secretKey)));
//{$bucket}.cos.{$region}.myqcloud.com/key 转换为//{$bucket}.cos.accelerate.myqcloud.com/key$cosClient = new Qcloud\\Cos\\Client(array('schema' => 'https', //协议头部,默认为http'credentials'=> array('secretId' => $secretId,'secretKey' => $secretKey),'allow_accelerate' => true // 指定 true,使用全球加速域名请求));
本页内容是否解决了您的问题?