Skip to content Skip to sidebar Skip to footer

Download From Azure Storage In Html Link

So I have a file uploaded to my azure storage and have a simple anchor tag where a user should be able to simply download the file. This is not working and not understanding why. M

Solution 1:

Your URL is pointing to Azure File storage, which is not quite the same as raw blobs. That is, you cannot just access individual files within the Azure File store without proper authentication (e.g. mounting the smb volume, using the API, Shared Access Signature, etc), even though File Storage is backed by blob storage.

If you truly stored the object in a blob (vs File Storage), then the url should look something like:

https://cembsite.blob.core.windows.net/containername/filename.pptx

Notice the URL contains blob vs file.

Post a Comment for "Download From Azure Storage In Html Link"