Reputation: 563
What is this complaining about?
I don't understand the error message?
Upvotes: 1
Views: 1095
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:
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
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:
Now, I am able to access files in blob storage container successfully via Azure Storage Explorer like below:
Upvotes: 0