Blob storage URLs do not work

Edwin 0 Reputation points
2025-08-15T20:23:09.8433333+00:00

So can someone please advise on this issue. We have a blob storage container and ever since recently we can upload images but the URLs do not work to access them with Resource not found errors on the URLs. Another container with exactly the same settings that we uploaded a few weeks back however does work fine. It shows everything should work fine when accessing the file through the blob storage file explorer. Thanks

Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Vinodh247 37,216 Reputation points MVP Volunteer Moderator
    2025-08-16T15:53:51.0766667+00:00

    Hi ,

    Thanks for reaching out to Microsoft Q&A.

    This issue usually happens because of changes in how azure blob storage handles public access. Earlier, containers often defaulted to allowing anonymous blob access, so direct URLs worked without extra configuration. Recently, Microsoft has made public access disabled by default for new storage accounts and containers, which means that while you can upload files, the URLs will not resolve unless you explicitly allow access. That explains why your older container still works, but the new one does not. It is also possible that the storage account now requires access through SAS tokens or has network restrictions such as private endpoints or firewalls enabled. To resolve this, check the container’s public access settings in the portal and compare them with the container that works. If anonymous access is disabled and you want public URLs, you will need to enable it at the container level. Otherwise, the recommended approach is to generate SAS tokens for secure access. This ensures that your files remain accessible without opening the storage account broadly to the internet.

    Please 'Upvote'(Thumbs-up) and 'Accept' as answer if the reply was helpful. This will be benefitting other community members who face the same issue.


  2. Priya ranjan Jena 265 Reputation points Microsoft External Staff Moderator
    2025-08-18T10:59:45.6533333+00:00

    Hi Edwin,

    Thank you for reaching out on Microsoft Q&A forum.

    To your query:Blob storage URLs do not work.

    Please Compare with Working Container & Look for differences in:

    1.Access policies

    2.Blob naming conventions

    3.Anonymous access at container level.

    To update the anonymous access level for container

    Please find the reference link below

    https://learn.microsoft.com/en-us/azure/storage/blobs/anonymous-read-access-configure?tabs=portal

    Just for the information you can take reference of below image as well.

    User's image

    User's image

    Alternate way to access is via SAS token:

    A shared access signature (SAS) provides secure delegated access to resources in your storage account,with a SAS, you have granular control over how a client can access your data.

    To configure the SAS for alternate way, please find the link below for reference

    https://learn.microsoft.com/en-us/azure/storage/common/storage-sas-overview?toc=%2Fazure%2Fstorage%2Fblobs%2Ftoc.json&bc=%2Fazure%2Fstorage%2Fblobs%2Fbreadcrumb%2Ftoc.json

    Make sure the URL you’re using to access the blob follows the correct format: https://<storage-account>.blob.core.windows.net/<container-name>/<blob-name>.

    If you find this comment helpful, Please “up-vote” for the information provided , this can be beneficial to community members.

    Please let us know if you have any further queries.

    Thanks

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.