1

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.

lf215
  • 1,185
  • 7
  • 41
  • 83

1 Answers1

1

According to your description, I used curl to check this issue on my side and I could retrieved the following result:

enter image description here

Moreover, use Azure Storage Explorer, you could right click your blob and click the properties option and check the Etag property as follows:

enter image description here

Or you could also leverage fiddler to check the response header:

enter image description here

Additionally, you could just access your blob via the browser and press F12 to open the developer tools and check the response header.

Community
  • 1
  • 1
Bruce Chen
  • 18,207
  • 2
  • 21
  • 35
  • thanks for all these methods. upvoting so at least i know working for others. (these don't show quoted for me.) – lf215 Jan 30 '18 at 21:49