How to upload block to azure file storage using sas url?

293 Views Asked by At

So, I managed to successfully generate a sas url for my blob and I can verify writing to the blob directly using the sas url. PUT request using Header: x-ms-blob-type: BlockBlob
Now I want to use the sas url to upload file blocks instead of uploading the entire file in a single request. I plan on later sending an append call to merge all the blocks together and make my file. How can I achieve this using sas url? This is required because I want an external client to upload their file to our azure blob storage in a multipart form.

0

There are 0 best solutions below