Search code examples
azureazure-blob-storage

Getting error while viewing files in Azure blob storage


I have uploaded some files from my local cmd prompt onto Azure Blob Storage which can be seen over there, however on console I cannot view them and the below error appears. I am login with my admin credentials. Need assistance.

Error


Solution

  • I encountered the same error when I authenticated using Microsoft Entra ID Authentication.

    Portal:

    enter image description here

    The error above occurred because you do not have permission to access the storage account.

    To access storage using Microsoft Entra ID authentication, the user needs the Storage Blob Data Contributor role.

    You can also access the storage account using an access key.

    enter image description here

    For that, you need to click the switch to access the key.

    Ensure that you have enabled "Allow storage account key access" in your configuration.

    Portal: enter image description here

    Reference:

    Authorize access to blobs using Microsoft Entra ID - Azure Storage | Microsoft Learn