【问题标题】:Generated sas token using python is not working for azure blob使用 python 生成的 sas 令牌不适用于 azure blob
【发布时间】:2021-06-08 19:56:06
【问题描述】:

我必须使用 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 设为公开,并且 url 应该在某个时间过期。

【问题讨论】:

    标签: python azure azure-functions


    【解决方案1】:

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

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

    【讨论】:

    • 感谢您的帮助。它现在工作正常。
    猜你喜欢
    • 1970-01-01
    • 2018-08-14
    • 2018-12-12
    • 2020-04-10
    • 1970-01-01
    • 2020-03-29
    • 1970-01-01
    • 1970-01-01
    • 2017-09-16
    相关资源
    最近更新 更多