Question

I am trying to access my blog storage on Windows Azure but every time I browse to

http://my_storageAcount.blob.core.windows.net

it gengerates 400 error (bad request). thanks for your advice.

Was it helpful?

Solution

http://my_storageAcount.blob.core.windows.net is the address of your Azure Blob Storage account.If you are trying to access the blob you need to specify the container name and the blob name. Suppose, you have a blob by name "MyBlob" present in "mycontainer",you can retrieve it by specifying http://my_storageAcount.blob.core.windows.net/mycontainer/MyBlob.

For other operations on Blob Microsoft has released REST api to work with Blob.to know more Visit here.In case you are working with private blobs and stuck with accessing them in browser.you need to have Shared access signature for the Private blob to access them directly in the browser. For knowing more about Shared access signature Visit here.

Hope it helps.Happy Coding!!!

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top