What is this complaining about?
I don't understand the error message?
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:
sri
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:
Connect
Now, I am able to access files in blob storage container successfully via Azure Storage Explorer like below:
Copyright © 2021 Jogjafile Inc.
I have one storage account with blob container named
srilike below:When I tried to connect via Azure Storage Explorer without including blob container name in SAS URL, I got same error like this:
To resolve it, you need to include blob container name in SAS URL like below:
After selecting Next, click on
Connectoption to access blob container like this:Now, I am able to access files in blob storage container successfully via Azure Storage Explorer like below: