void com.qcloud.cos.ClientConfig.setEndPointSuffix(String endPointSuffix)
// 1 使用 CDN 加速域名,无需再发送 COS 的认证信息COSCredentials cred = new AnonymousCOSCredentials();// 2 设置 bucket 的地域简称,COS 地域简称请参照 https://www.tencentcloud.com/document/product/436/6224ClientConfig clientConfig = new ClientConfig(new Region("ap-beijing"));// 推荐使用 https 协议clientConfig.setHttpProtocol(HttpProtocol.https);// 3 设置默认 CDN 加速域名后缀String cdnSuffix = "file.myqcloud.com";clientConfig.setEndPointSuffix(cdnSuffix);// 4 生成 cos 客户端COSClient cosclient = new COSClient(cred, clientConfig);
参数名称 | 描述 | 类型 |
endPointSuffix | 通过设置域名后缀,使用 CDN 加速域名 | String |
void com.qcloud.cos.ClientConfig.setEndpointBuilder(EndpointBuilder endpointBuilder)
// 1 使用 CDN 加速域名,无需再发送 COS 的认证信息COSCredentials cred = new AnonymousCOSCredentials();// 2 设置 bucket 的地域简称,COS 地域简称请参照 https://www.tencentcloud.com/document/product/436/6224ClientConfig clientConfig = new ClientConfig(new Region("ap-beijing"));// 推荐使用 https 协议,如果使用 https 协议,请确保自定义域名有相关 https 证书clientConfig.setHttpProtocol(HttpProtocol.https);// 3 设置 CDN 自定义域名// get service 请求会使用这个域名,这个域名不能自定义String serviceApiEndpoint = "service.cos.myqcloud.com";String cdnEndpoint = "xxx.xxx.com";UserSpecifiedEndpointBuilder endPointBuilder = new UserSpecifiedEndpointBuilder(cdnEndpoint, serviceApiEndpoint);clientConfig.setEndpointBuilder(endPointBuilder);// 4 生成 cos 客户端COSClient cosclient = new COSClient(cred, clientConfig);
参数名称 | 描述 | 类型 |
endPointerBuilder | 参数用于构建自定义 CDN 加速域名 | UserSpecifiedEndpointBuilder |
参数名称 | 描述 | 类型 |
generalApiEndpoint | 填写用户的自定义 CDN 加速域名 | String |
getServiceApiEndpoint | 只能填写 service.cos.myqcloud.com | String |
void com.qcloud.cos.ClientConfig.setEndpointBuilder(EndpointBuilder endpointBuilder)
// 1 初始化用户身份信息(secretId, secretKey)// SECRETID和SECRETKEY请登录访问管理控制台进行查看和管理String secretId = "SECRETID";String secretKey = "SECRETKEY";COSCredentials cred = new BasicCOSCredentials(secretId, secretKey);// 2 设置 bucket 的地域简称,COS 地域简称请参照 https://www.tencentcloud.com/document/product/436/6224ClientConfig clientConfig = new ClientConfig(new Region("ap-beijing"));// 推荐使用 https 协议clientConfig.setHttpProtocol(HttpProtocol.https);// 3 设置自定义域名// get service 请求会使用这个域名,这个域名不能自定义String serviceApiEndpoint = "service.cos.myqcloud.com";String userEndpoint = "xxx.xxx.com";UserSpecifiedEndpointBuilder endPointBuilder = new UserSpecifiedEndpointBuilder(userEndpoint, serviceApiEndpoint);clientConfig.setEndpointBuilder(endPointBuilder);// 4 生成 cos 客户端COSClient cosclient = new COSClient(cred, clientConfig);
参数名称 | 描述 | 类型 |
endPointerBuilder | 参数用于构建自定义源站域名 | UserSpecifiedEndpointBuilder |
参数名称 | 描述 | 类型 |
generalApiEndpoint | 填写自定义源站域名 | String |
getServiceApiEndpoint | 只能填写 service.cos.myqcloud.com | String |
void com.qcloud.cos.ClientConfig.setEndPointSuffix(String endPointSuffix)
// 1 初始化用户身份信息(secretId, secretKey)// SECRETID和SECRETKEY请登录访问管理控制台进行查看和管理String secretId = "SECRETID";String secretKey = "SECRETKEY";COSCredentials cred = new BasicCOSCredentials(secretId, secretKey);// 2 设置 bucket 的地域简称,COS 地域简称请参照 https://www.tencentcloud.com/document/product/436/6224ClientConfig clientConfig = new ClientConfig(new Region("ap-beijing"));// 推荐使用 https 协议clientConfig.setHttpProtocol(HttpProtocol.https);// 3 设置全球加速域名后缀String cosSuffix = "cos.accelerate.myqcloud.com";clientConfig.setEndPointSuffix(cosSuffix);// 4 生成 cos 客户端COSClient cosclient = new COSClient(cred, clientConfig);
参数名称 | 描述 | 类型 |
endPointSuffix | 通过设置域名后缀,使用全球加速域名 | String |
本页内容是否解决了您的问题?