简介
本文档提供关于如何使用非默认域名请求 COS 服务。
SDK API 参考
CDN 默认加速域名
以下代码展示了如何使用默认加速域名访问 COS 服务。
示例代码
Objective-C
QCloudCOSXMLEndPoint *endpoint = [[QCloudCOSXMLEndPoint alloc] init];
endpoint.suffix = @"file.myqcloud.com";
Swift
let endpoint = QCloudCOSXMLEndPoint();
endpoint.suffix = "file.myqcloud.com";
CDN 自定义加速域名
以下代码展示了如何使用自定义加速域名访问 COS 服务。
示例代码
Objective-C
QCloudCOSXMLEndPoint *endpoint = [[QCloudCOSXMLEndPoint alloc] initWithLiteralURL:[NSURL URLWithString:@"exampledomain.com"]];
Swift
let endpoint = QCloudCOSXMLEndPoint.init(literalURL: NSURL.init(string: "exampledomain.com") as URL?);
自定义源站域名
以下代码展示了如何使用自定义源站域名访问 COS 服务。
示例代码
Objective-C
NSString *customDomain = @"exampledomain.com";
QCloudCOSXMLEndPoint *endpoint = [[QCloudCOSXMLEndPoint alloc] initWithLiteralURL:[NSURL URLWithString:customDomain]];
Swift
let endpoint = QCloudCOSXMLEndPoint.init(literalURL: NSURL.init(string: "exampledomain.com") as URL?);
全球加速域名
以下代码展示了如何使用全球加速域名访问 COS 服务。
示例代码
Objective-C
QCloudCOSXMLEndPoint *endpoint = [[QCloudCOSXMLEndPoint alloc]init];
endpoint.suffix = @"cos.accelerate.myqcloud.com";
Swift
let endpoint = QCloudCOSXMLEndPoint();
endpoint.suffix = "cos.accelerate.myqcloud.com";
本页内容是否解决了您的问题?