使用 python 生成的 sas 令牌不适用于 azure blob

Generated sas token using python is not working for azure blob

我必须使用 python 在函数应用程序内为 blob 生成 SAS 令牌。我使用了以下代码。

sas_url=generate_blob_sas(account_name=AZURE_ACC_NAME, container_name=AZURE_CONTAINER, blob_name=AZURE_BLOB, snapshot=None, account_key=AZURE_PRIMARY_KEY, user_delegation_key=None, permission="racwd", expiry='2021-06-08', start="2021-06-07", policy_id=None, ip=None)

# used following pattern to generate url

url='https://'+AZURE_ACC_NAME+'.blob.core.windows.net/'+AZURE_CONTAINER+'/'+AZURE_BLOB+'?'+sas_url

生成的 sas 令牌有 st、se、sp、sv、sr 和 sig

它给我错误,因为

<Error>
<Code>AuthenticationFailed</Code>
<Message>Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature. RequestId:f8bf0c5e-xxxx-xxxx-xxxx-xxxxxxxxxxxx Time:2021-06-08T06:27:02.0864172Z</Message>
<AuthenticationErrorDetail>Signature not valid in the specified time frame: Start [Mon, 07 Jun 2021 00:00:00 GMT] - Expiry [Tue, 08 Jun 2021 00:00:00 GMT] - Current [Tue, 08 Jun 2021 06:27:02 GMT]</AuthenticationErrorDetail>
</Error>

要求是我不能制作 blob,因为 public 和 url 应该在某个时候过期。

此问题与您设置为 2021-06-08 的 SAS 到期日期有关。这意味着您的 SAS 令牌将于 2021 年 6 月 8 日午夜(UTC 时间)到期。

请将其更改为未来的日期(例如 2021-06-09),您的 SAS 令牌应该可以正常工作。