cos_pool_t *p = NULL;cos_request_options_t *options = NULL;cos_pool_create(&p, NULL);options = cos_request_options_create(p);options->config = cos_config_create(options->pool);//请求域名格式为 <bucketname-appid>.file.myqcloud.comcos_str_set(&options->config->endpoint, "<bucketname-appid>.file.myqcloud.com");
参数名称 | 描述 | 类型 |
endpoint | 通过设置域名后缀,使用 CDN 加速域名 | String |
cos_pool_t *p = NULL;cos_request_options_t *options = NULL;cos_pool_create(&p, NULL);options = cos_request_options_create(p);options->config = cos_config_create(options->pool);//请求域名为 your.domain.comcos_str_set(&options->config->endpoint, "your.domain.com"); //自定义CDN域名// is_cname设置为1options->config->is_cname = 1;
参数名称 | 描述 | 类型 |
endpoint | 通过设置域名后缀,使用自定义 CDN 域名 | String |
is_cname | 设置为1,设置为自定义 CDN 域名模式 | Int |
cos_pool_t *p = NULL;cos_request_options_t *options = NULL;cos_pool_create(&p, NULL);options = cos_request_options_create(p);options->config = cos_config_create(options->pool);//请求域名为 your.domain.comcos_str_set(&options->config->endpoint, "your.domain.com"); //自定义域名// is_cname设置为1options->config->is_cname = 1;
参数名称 | 描述 | 类型 |
endpoint | 通过设置域名后缀,使用自定义源站域名 | String |
is_cname | 设置为1,设置为自定义源站域名模式 | Int |
cos_pool_t *p = NULL;cos_request_options_t *options = NULL;cos_pool_create(&p, NULL);options = cos_request_options_create(p);options->config = cos_config_create(options->pool);//请求域名为 cos.accelerate.myqcloud.comcos_str_set(&options->config->endpoint, "cos.accelerate.myqcloud.com");
参数名称 | 描述 | 类型 |
endpoint | 通过设置域名后缀,使用全球加速域名 | String |
本页内容是否解决了您的问题?