Home > Mobile >  Upload blob to Azure and give public read access C#
Upload blob to Azure and give public read access C#

Time:11-15

I'm trying to upload an image to Azure blob storage to view later in my application. However, when I uploaded my image I can not view the image using the link of my blob as I think the file-view permissions are not set correctly. But, I do not know how to set these in code.

I have found a question with an answer that is similar, but it's so outdated that it does not work like that anymore.

(Change access level

You will see the options it gives you will map directly to the BlobContainerPublicAccessType

  • Related