Fetching URL of Azure Blob in Container
Comments
-
Once the file has been uploaded as a blob, azure will assign a unique download URL to that specific file. The URL for the Blob files is always structure like:
https://<storage_account_name>.blob.core.windows.net/<container_name>/<blob_name>
With this knowledge, you can build a string with the base url and a dynamic blob name.
Documentation:
- Azure Storage Module: https://documentation.decisions.com/docs/azure-storage-module
- Helpful stack overflow link: https://stackoverflow.com/questions/57664788/how-to-obtain-the-url-of-an-image-stored-in-azure-blob-storage-after-upload

