skip to Main Content

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.

2

Answers


  1. 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

    Login or Signup to reply.
  2. enter image description here

    Right click to your container folder and then select change access level and you are done!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search