API | 操作名 | 操作描述 |
查询存储桶列表 | 查询指定账号下所有的存储桶列表 |
public Guzzle\\Service\\Resource\\Model listBuckets();
<?phprequire dirname(__FILE__) . '/../vendor/autoload.php';$secretId = "SECRETID"; //替换为用户的 secretId,请登录访问管理控制台进行查看和管理,https://console.tencentcloud.com/cam/capi$secretKey = "SECRETKEY"; //替换为用户的 secretKey,请登录访问管理控制台进行查看和管理,https://console.tencentcloud.com/cam/capi$region = "ap-beijing"; //替换为用户的 region,已创建桶归属的region可以在控制台查看,https://console.tencentcloud.com/cos5/bucket$cosClient = new Qcloud\\Cos\\Client(array('region' => $region,'schema' => 'https', //协议头部,默认为http'credentials'=> array('secretId' => $secretId ,'secretKey' => $secretKey)));try {$result = $cosClient->listBuckets();// 请求成功print_r($result);} catch (\\Exception $e) {// 请求失败echo($e);}
Array([data:protected] => Array([Owner] => Array([ID] => qcs::cam::uin/100000000001:uin/100000000001[DisplayName] => 100000000001)[Buckets] => Array([0] => Array([Name] => examplebucket-1250000000[Location] => ap-beijing[CreationDate] => 2016-07-29T03:09:54Z)[1] => Array([Name] => examplebucket2-1250000000[Location] => ap-beijing[CreationDate] => 2017-08-02T04:00:24Z))[RequestId] => NWE3YzgxZmFfYWZhYzM1MGFfMzc3MF9iOGY5OQ==))
参数名称 | 父节点 | 描述 | 类型 |
Owner | 无 | 存储桶所有者信息 | Array |
ID | Owner | 存储桶所有者 ID | String |
DisplayName | Owner | 存储桶所有者的名字信息 | String |
Buckets | 无 | 存储桶列表 | Array |
Bucket | Buckets | 存储桶信息 | Array |
Name | Bucket | 存储桶名称 | String |
Location | Bucket | 存储桶所在的地域名 | String |
CreationDate | Bucket | 存储桶创建的时间 | String |
本页内容是否解决了您的问题?