Como listar objetos em um bucket do Edge Storage

Este guia descreve como listar objetos de um bucket do Edge Storage usando a API da Azion, Azion CLI, e Azion Runtime.

Listando os objetos de um bucket

Para listar os objetos em um bucket, execute a seguinte requisição GET no seu terminal, substituindo [TOKEN VALUE] pelo seu personal token e <bucket_name> pelo nome do seu bucket:

curl --location 'https://api.azion.com/v4/storage/buckets/<bucket_name>/objects?page_size=10&page=1' \
--header 'Accept: application/json' \
--header 'Authorization: Token [TOKEN VALUE]'

Você deve receber a seguinte resposta:

{ "continuation_token": null, "results": [ { "key": "index.html", "last_modified": "2024-01-18T18:47:18.886000Z", "size": 217 } ]
}

Contribuidores