Azure CLI-Blob列表命令与SAS令牌一起使用时抛出无效的“ InvalidResourceName”错误

时间:2018-10-24 12:17:03

标签: azure azure-storage-blobs azure-cli azureportal

我正在计算机中使用AzureCLI从Azure下载并列出blob。我尝试使用帐户密钥列出Blob,该密钥按预期工作。但当 我尝试使用SAS令牌列出它,但遇到了以下提到的异常,

**命令:**

C:\Users\22222>az storage blob list -c containerName --account-name accountName  -o table --sas-token sp=r&st=2018-10-16T12:53:16Z&se=2018-10-16T20:53:16Z&spr=https&sv=2017-11-09&sig=d%2asdfasdfewerasdf$#$%#$%#$A%3D&sr=b

注意:我从Azure门户获得了此SAS令牌

  

指定的资源不存在。错误代码:ResourceNotFound <?xml version="1.0" encoding="utf-8"?><Error><Code>ResourceNotFound</Code><Message>The specified resource does not exist. RequestId:a108a8f9-d01e-000d-6a6c-6b0194000000 Time:2018-10-24T07:38:04.5834052Z</Message></Error>

1 个答案:

答案 0 :(得分:1)

如果不将sas-token放在引号中,我还会重现该问题。请尝试将已存储的字符串用引号引起来。

az storage blob list -c containerName --account-name accountName  -o table --sas-token "sp=r&st=2018-10-16T12:53:16Z&se=2018-10-16T20:53:16Z&spr=https&sv=2017-11-09&sig=d%2asdfasdfewerasdf$#$%#$%#$A%3D&sr=b"

测试结果:

enter image description here

注意:确保您的sas令牌有效。