We've got an Azure Blob storage Container with access level Private.
We've uploaded a blob, and the portal (and API) gives us a nice friendly URL for it.
We've given our Azure Active Directory group Owner
role over the subscription, and Azure Blob Data Reader
role to the storage account.
But I browse to the URL and it returns with ResourceNotFound
.
Our end goal is to use it with an <img src="*blob url*" />
in a blazor server app (in an authenticated context).
Is this possible?
We're aware we can generated shared access keys and tag them onto the url. But we'd prefer to use pure AzureAD instead, if possible.