Hello @Sanjana Sambur ,
Can you kindly validate if your storage account is under a firewall. If yes - you will have to allow the existing VNET under the firewall from Azure portal.
Also , just validate how are you trying to access the container. In general, you cannot directly get a container like:
https://storageaccountname.blob.core.windows.net/containername?{SAS token}
Either you can add entire blob path to it or add a "restype=container" to get container
Try to add a blob path to the URL:
https://storageaccountname.blob.core.windows.net/containername/{folder}/{blob}?{SAS token}
Basically , the correct way to get container is:
generate an account SAS
append it to the container URL
append "restype=container" or “restype=container&comp=list”
If you are trying to access the container using some application , try to use all lowercase characters while accessing : https://learn.microsoft.com/en-us/rest/api/storageservices/naming-and-referencing-shares--directories--files--and-metadata#metadata-names
Sometimes , rotating the keys might help !
Regards,
Shiva.