Home > OS >  Unable to access Azure container through browser
Unable to access Azure container through browser

Time:11-17

This is the error showing in browser when I hit the url of container:

This XML file does not appear to have any style information associated with it. The document tree is shown below.

ResourceNotFound

The specified resource does not exist. RequestId:3fc3c275-301e-000f-3193-f99692000000 Time:2022-11-16T08:13:12.8837824Z

But I am able to access the blob when I hit the URL of blob.

CodePudding user response:

I tried to reproduce the Same in my environment in got the same error as below:

enter image description here

To resolve this issue, try to give access in container url with SAS token like below:

enter image description here

And generate a SAS token and include it in below Url:

https://<storage-account-name>.blob.core.windows.net/<containername>?restype=container&comp=list&<sas-token>

When I ran the same, I got the result successfully like below:

enter image description here

  • Related