Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

GetObjectTagging


Retorna o conjunto de tags de um objeto. Você envia a solicitação GET no sub-recurso de marcação associado ao objeto.

Request Syntax


GET /{Key+}?tagging&VersionId=VersionId HTTP/1.1
Host: bucket-name.bigfile.brascloud.com.br:443

Response Syntax


HTTP/1.1 200
x-amz-version-id: VersionId
<?xml version="1.0" encoding="UTF-8"?>
<GetObjectTaggingOutput>
   <TagSet>
      <Tag>
         <Key>string</Key>
         <Value>string</Value>
      </Tag>
   </TagSet>
</GetObjectTaggingOutput>

Exemplos

A solicitação a seguir retorna o conjunto de tags do objeto especificado.

Request
            GET /example-object?tagging HTTP/1.1
            Host: bucket.bigfile.brascloud.com.br:443
            Date: Thu, 22 Sep 2016 21:33:08 GMT
            Authorization: authorization string

Response
            HTTP/1.1 200 OK
            Date: Thu, 22 Sep 2016 21:33:08 GMT
            Connection: close
            Server: bigfile
            <?xml version="1.0" encoding="UTF-8"?>
            <Tagging xmlns="http://bigfile.brascloud.com.br:443/doc/2006-03-01/">
               <TagSet>
                 <Tag>
                   <Key>tag1</Key>
                   <Value>val1</Value>
                </Tag>
                <Tag>
                    <Key>tag2</Key>
                    <Value>val2</Value>
                 </Tag>
              </TagSet>
            </Tagging>

Ainda tem dúvidas?

Você pode abrir um chamado conosco acessando nosso portal de suporte, estamos a disposição.

  • No labels