Reputation: 1009
Using curl
against http://MY_ACCOUNT.blob.core.cloudapi.de/MY_CONTAINER/MY_PATH gives header :
ETag: 0x8C564F739B6442A
I thought Etags need to be quoted.
Upvotes: 1
Views: 321
Reputation: 18465
According to your description, I used curl
to check this issue on my side and I could retrieved the following result:
Moreover, use Azure Storage Explorer, you could right click your blob and click the properties option and check the Etag property as follows:
Or you could also leverage fiddler to check the response header:
Additionally, you could just access your blob via the browser and press F12 to open the developer tools and check the response header.
Upvotes: 1