Andrew Duffy
Andrew Duffy

Reputation: 563

Azure Storage Account --> Shared Access Signature Error

What is this complaining about?

I don't understand the error message?

enter image description here

Upvotes: 1

Views: 1095

Answers (1)

Sridevi
Sridevi

Reputation: 22352

I agree with @Gaurav Mantri, you missed including blob container name in SAS URL that is giving you that error.

I have one storage account with blob container named sri like below:

enter image description here

When I tried to connect via Azure Storage Explorer without including blob container name in SAS URL, I got same error like this:

https://<storage_acc_name>.blob.core.windows.net/?sv=2022-11-02&ss=bfqt&srt=c&sp=rwdlacupyx&se=2023-06-13T13:17:29Z&st=2023-06-13T05:17:29Z&spr=https&sig=xxxxxxxxxxxxxxxxx

enter image description here

To resolve it, you need to include blob container name in SAS URL like below:

https://<storage_acc_name>.blob.core.windows.net/<blob_container_name>?sv=2022-11-02&ss=bfqt&srt=c&sp=rwdlacupyx&se=2023-06-13T13:17:29Z&st=2023-06-13T05:17:29Z&spr=https&sig=xxxxxxxxxxxxxxxxx

After selecting Next, click on Connect option to access blob container like this:

enter image description here

Now, I am able to access files in blob storage container successfully via Azure Storage Explorer like below:

enter image description here

Upvotes: 0

Related Questions