OBS uses the GET method to obtain the custom domain name of a bucket.
1 2 3 4 5 6 | GET /?customdomain HTTP/1.1
User-Agent: curl/7.29.0
Host: bucketname.obs.region.example.com
Accept: */*
Date: date
Authorization: authorization string
|
This request contains no parameter.
This request uses common headers. For details about common request headers, see the section Common Request Headers.
This request involves no elements.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | HTTP/1.1 200 OK
Server: OBS
x-amz-request-id: request id
x-amz-id-2: id
Content-Type: application/xml
Date: date
Content-Length: 272
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ListBucketCustomDomainsResult xmlns="http://obs.example.com/doc/2015-06-30/">
<Domains>
<DomainName>domainname</DomainName>
<CreateTime>createtime</CreateTime>
</Domains>
</ListBucketCustomDomainsResult>
|
This response uses common headers. For details about common response headers, see the section Common Response Headers.
The response returns the custom domain name of the bucket in the form of message elements. Table 1 lists details about each element.
Element |
Description |
---|---|
ListBucketCustomDomainsResult |
Container of the returned result Type: container Children: Domains Ancestor: none |
Domains |
Element indicating the custom domain name Type: element Children: DomainName, CreateTime Ancestor: ListBucketCustomDomainsResult |
DomainName |
Custom domain name Type: string Children: none Ancestor: Domains |
CreateTime |
Time when a custom domain name is created Type: string, expressed in the form of UTC time. Children: none Ancestor: Domains |
No special error responses are returned. For details about error responses, see Table 1.
1 2 3 4 5 6 | GET /?customdomain HTTP/1.1
User-Agent: curl/7.29.0
Host: examplebucket.obs.region.example.com
Accept: */*
Date: Mon, 14 Jan 2019 08:31:45 +0000
Authorization: AWS UDSIAMSTUBTEST000094:veTm8B18MPLFqNyGh2wmQqovZ2U=
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | HTTP/1.1 200 OK
Server: OBS
x-amz-request-id: 000001697693130C80E9D2D29FA84FC2
x-amz-id-2: 32AAAQAAEAABAAAQAAEAABAAAQAAEAABCSM80AI9weqGUsIFJScVxSKlG4DmypX9
Content-Type: application/xml
Date: Wed, 13 Mar 2019 10:22:24 GMT
Content-Length: 272
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ListBucketCustomDomainsResult xmlns="http://obs.example.com/doc/2015-06-30/">
<Domains>
<DomainName>obs.ccc.com</DomainName>
<CreateTime>2019-03-13T10:22:05.912Z</CreateTime>
</Domains>
</ListBucketCustomDomainsResult>
|