We are trying to connect to Azure via postman but getting
"The MAC signature found in the HTTP request is not the same as any computed signature". What we are doing based on the documentation is to construct a string to sign:
GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Wed, 24 Feb 2021 08:50:08 GMT\nx-ms-version:2020-04-08\n/myaccount/containername/filename
And then we decode the accesskey from base64
From there we use an online tool to encrypt the signature with HMAC SHA256 and the access key of the Azure portal.
Please see photo: Azure SharedKey
We used that as authorization header SharedKey myaccount:HashedOutput however we get this error: Error in Postman
Can someone advice on this? Thank you!