Setting the "defaultServiceVersion" makes no difference on requests without the "x-ms-version" headers set
Hello,
I've used the following command to set the "defaultServiceVersion" unto our Storage Account:
az storage account blob-service-properties update --set defaultServiceVersion="2020-04-08" --account-name FOOBAR
So that when I interact with the Storage Account API (https://FOOBAR.blob.core.windows.net/
), I wouldn't have to set it.
I can see that it is set and accepted by Azure when I do blob-service-properties show
However, when I use Postman to send a request to it, I still have to always set the x-ms-version
so that it accepts Bearer FOOBAR
. Otherwise:
Authentication scheme Bearer is not supported in this version.
I've tried it with the 2025-01-05
, no luck. The Storage Account is in West Europe.