全部產品
Search
文件中心

Object Storage Service:ListStyle

更新時間:Jun 19, 2024

調用ListStyle介面查詢某個Bucket下已建立的所有樣式。

注意事項

阿里雲帳號預設擁有查詢某個Bucket下已建立的所有樣式的許可權。如果您希望通過RAM使用者或者STS的方式進行查詢,您必須擁有oss:ListStyle許可權。具體操作,請參見為RAM使用者授權自訂的權限原則

請求文法

GET /?style HTTP/1.1
Date:  GMT Date
Host: BucketName.oss-cn-hangzhou.aliyuncs.com
Authorization: SignatureValue

要求標頭

此介面僅涉及公用要求標頭。更多資訊,請參見公用要求標頭(Common Request Headers)

回應標頭

此介面僅涉及公用回應標頭。更多資訊,請參見公用回應標頭(Common Response Headers)

響應元素

名稱

類型

樣本值

描述

StyleList

容器

不涉及

查詢樣式資訊列表的容器。

父節點:無

子節點:Style

Style

容器

不涉及

擷取樣式內容的容器。

父節點:StyleList

子節點:Name、Content、CreateTime、LastModifyTime

Name

字串

imagestyle

樣式名稱。

父節點:Style

子節點:無

Content

字串

image/resize,p_50

樣式內容。

父節點:Style

子節點:無

Category

字串

image

樣式分類。

父節點:Style

子節點:無

CreateTime

字串

Wed, 20 May 2020 12:07:15 GMT

樣式建立時間。

父節點:Style

子節點:無

LastModifyTime

字串

Wed, 21 May 2020 12:07:15 GMT

樣式修改時間。

父節點:Style

子節點:無

樣本

  • 請求樣本

GET /?style HTTP/1.1
Date: Fri, 04 Mar 2022 05:34:24 GMT
Content-Length: 63
Host: oss-example.oss-cn-hangzhou.aliyuncs.com
Authorization: OSS qn6q**************:77Dv****************

  • 返回樣本

HTTP/1.1 200 OK
Server: AliyunOSS
Date: Fri, 04 Mar 2022 04:43:37 GMT
Content-Type: application/xml
Content-Length: 695
Connection: keep-alive
x-oss-request-id: 622198F90612433336EC66A6
 
<?xml version="1.0" encoding="UTF-8"?>
<StyleList>
 <Style>
 <Name>imagestyle</Name>
 <Content>image/resize,p_50</Content>
 <Category>image</Category>
 <CreateTime>Wed, 20 May 2020 12:07:15 GMT</CreateTime>
 <LastModifyTime>Wed, 21 May 2020 12:07:15 GMT</LastModifyTime>
 </Style>
 <Style>
 <Name>imagestyle1</Name>
 <Content>image/resize,w_200</Content>
 <Category>image</Category>
 <CreateTime>Wed, 20 May 2020 12:08:04 GMT</CreateTime>
 <LastModifyTime>Wed, 21 May 2020 12:08:04 GMT</LastModifyTime>
 </Style>
 <Style>
 <Name>imagestyle2</Name>
 <Content>image/resize,w_300</Content>
 <Category>image</Category>
 <CreateTime>Fri, 12 Mar 2021 06:19:13 GMT</CreateTime>
 <LastModifyTime>Fri, 13 Mar 2021 06:27:21 GMT</LastModifyTime>
 </Style>
</StyleList>