lf215
lf215

Reputation: 1009

azure blob etag unqouted

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

Answers (1)

Bruce Chen
Bruce Chen

Reputation: 18465

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.

Upvotes: 1

Related Questions