I am trying to generate SaS token for Storage Account blob container in Azure APIM policy. But the SaS token is not getting generated correctly as it is throwing Authentication failed error. Below is the snippet from the policy.
Not sure what I am doing wrong. Please help.
I tried the below code
<set-variable name="accessKey" value="{{accessKey}}" />
<set-variable name="resourcePath" value="@(context.Request.Headers.GetValueOrDefault("containerName"))" />
<set-variable name="x-ms-date" value="@(DateTime.UtcNow.ToString("R"))" />
<set-variable name="x-ms-version" value="2022-11-02" />
<set-variable name="signedPermissions" value="rw" />
<set-variable name="signedStart" value="2023-11-22T06:35:21Z" />
<set-variable name="signedExpiry" value="2023-11-23T06:35:21Z" />
<set-variable name="signedResource" value="c" />
<set-variable name="signedVersion" value="2021-10-04" />
<set-variable name="canonicalizedResource" value="@{
return string.Format("/{0}/{1}",(string)context.Variables["storageAccount"],
string)context.Variables["resourcePath"]);
}" />
<set-variable name="signedProtocol" value="https" />
<set-variable name="stringToSign" value="@{
return string.Format("{0}\n{1}\n{2}\n{3}\n{4}\n{5}\n{6}",
(string)context.Variables["signedPermissions"],
(string)context.Variables["signedStart"],
(string)context.Variables["signedExpiry"],
(string)context.Variables["canonicalizedResource"],
(string)context.Variables["signedProtocol"],
(string)context.Variables["signedVersion"],
(string)context.Variables["signedResource"]) ;
}" />
<set-variable name="signature" value="@{
System.Security.Cryptography.HMACSHA256 hasher = new
System.Security.Cryptography.HMACSHA256(Convert.FromBase64String((string)context.Variables["accessKey"]));
return Convert.ToBase64String(hasher.ComputeHash(System.Text.Encoding.UTF8.GetBytes((string)context.Variables["stringToSign"])));
}" />
You need to modify the
StringToSign
format as per latest version 2022-11-02.You can use the below policy to generate the SAS token.
Policy-
I am able to get the URL along with the SAS token in it.
I can get the content of every blob which are there in the specified container as shown below.
References-
Generate a SAS token from within an APIM policy - Maxim Braekman.