0
votes

We have two blob containers on Azure Storage. One is private and the other is public. I want to make a blob in private container a publicly accessible one on my application.

I am trying to copy blob from private to public container. I have found this on docs - Copy Blob. However, I could not manage to successfully to this operation and cannot find detailed explanations.

Last error I get is about Authorization header are not formed properly. Another previous one was about Date header not proper but I have solved it by new Date().toUTCString() instead of new Date().

What am I missing here?

1
It seems that you're using rest api, why not use sdk?Ivan Yang
I am connecting from Node.js. I will check if there is an sdk for it.sçuçu
The sdk is here, you use the method startCopyBlob within the sdk.Ivan Yang

1 Answers

1
votes

I suggest you can use node.js sdk, then use the method startCopyBlob. By using rest api, it will take a few time to construct the authentication and not easy.