I uploaded a file to my blob storage in Azure and now I want to get the Azure link for the upload. I'm using node.js and below is my code:
blobService.createContainerIfNotExists('trimfaces', {
publicAccessLevel: 'blob'
}, function(error, result, response) {
if (!error) {
// if result = true, container was created.
// if result = false, container already existed.
}
});
http://<storage-account-name>.blob.core.windows.net/<container-name>/<blob-name>