use of com.qcloud.cos.COSClient in project cos-java-sdk-v5 by tencentyun.
the class MediaInfoDemo method main.
public static void main(String[] args) {
// 1 初始化用户身份信息(secretId, secretKey)。
COSClient client = ClientUtils.getTestClient();
// 2 调用要使用的方法。
generateMediainfo(client);
}
use of com.qcloud.cos.COSClient in project cos-java-sdk-v5 by tencentyun.
the class QueueDemo method main.
public static void main(String[] args) {
// 1 初始化用户身份信息(secretId, secretKey)。
COSClient client = ClientUtils.getTestClient();
// 2 调用要使用的方法。
updateMediaQueue(client);
}
use of com.qcloud.cos.COSClient in project cos-java-sdk-v5 by tencentyun.
the class BucketDemo method main.
public static void main(String[] args) throws Exception {
// 1 初始化用户身份信息(secretId, secretKey)。
COSClient client = ClientUtils.getTestClient();
// 2 调用要使用的方法。
describeMediaBuckets(client);
}
use of com.qcloud.cos.COSClient in project cos-java-sdk-v5 by tencentyun.
the class ClientUtils method getCosClient.
public static COSClient getCosClient(String secretId, String secretKey, String _region) {
// 1 初始化用户身份信息(secretId, secretKey)。
COSCredentials cred = new BasicCOSCredentials(secretId, secretKey);
// 2 设置 bucket 的区域, CI 地域的简称请参照 https://cloud.tencent.com/document/product/436/6224
// clientConfig 中包含了设置 region, https(默认 https), 超时, 代理等 set 方法, 使用可参见源码或者常见问题 Java SDK 部分。
Region region = new Region(_region);
ClientConfig clientConfig = new ClientConfig(region);
clientConfig.setHttpProtocol(HttpProtocol.http);
// 3 生成 cos 客户端。
return new COSClient(cred, clientConfig);
}
use of com.qcloud.cos.COSClient in project cos-java-sdk-v5 by tencentyun.
the class ConcatDemo method main.
public static void main(String[] args) throws Exception {
// 1 初始化用户身份信息(secretId, secretKey)。
COSClient client = ClientUtils.getTestClient();
// 2 调用要使用的方法。
createMediaJobs(client);
}
Aggregations