tencent cloud

Cloud Object Storage

Setting Access Endpoints

PDF
Modo Foco
Tamanho da Fonte
Última atualização: 2024-02-02 14:40:45

Overview

This document describes how to request the COS service by using a non-default domain name.

Custom Origin Server Domain Name

For more information, see Enabling Custom Origin Server Domains.
The sample code below shows how to access a COS service using a custom origin server domain name.

Sample code

// The bucket region can be viewed in the COS console at https://console.tencentcloud.com/cos5/bucket/. For more information on regions, visit https://www.tencentcloud.com/document/product/436/6224?from_cn_redirect=1.
String region = "ap-beijing"; // Bucket region
String customDomain = "exampledomain.com"; // Custom origin server domain name

// Create a `CosXmlServiceConfig` object and modify the configuration parameters as needed
CosXmlServiceConfig serviceConfig = CosXmlServiceConfig(
region: region,
isDebuggable: false,
isHttps: true,
hostFormat: customDomain // Modify the requested domain name
);
// Register the default COS service
Cos().registerDefaultService(serviceConfig);

Global Acceleration Domain Name

For more information on global acceleration, see Overview.
The sample code below shows how to access a COS service using a global acceleration endpoint.

Sample code

// The bucket region can be viewed in the COS console at https://console.tencentcloud.com/cos5/bucket/. For more information on regions, visit https://www.tencentcloud.com/document/product/436/6224?from_cn_redirect=1.
String region = "ap-beijing"; // Bucket region
// Whether to enable global acceleration
bool accelerate = true;
// Create a `CosXmlServiceConfig` object and modify the configuration parameters as needed
CosXmlServiceConfig serviceConfig = CosXmlServiceConfig(
region: region,
isDebuggable: false,
isHttps: true,
accelerate: accelerate // Use a global acceleration domain name
);
// Register the default COS service
Cos().registerDefaultService(serviceConfig);


Ajuda e Suporte

Esta página foi útil?

comentários