gpt4 book ai didi

azure - 使用 Python SDK 生成 Azure 容器 SAS token 时出错

转载 作者:行者123 更新时间:2023-12-03 05:29:13 29 4
gpt4 key购买 nike

我正在尝试使用适用于 Azure 的 Python SDK 生成容器 SAS token 。使用下面的代码,我收到此错误:AuthenticationErrorDetail:签名字段格式不正确。

生成的 token 似乎时间格式不正确 - 这是一个问题吗?如果是,我该如何修复它?看起来像这样:se=2021-03-08T17%3A49%3A35Z&sp=rwlacu&spr=https&sv=2020-04-08&sr=c&sig=QhAFl1435SDFGSFDguiPA8%3D

我很确定我应该将 sas_token 与容器 url 连接起来,我已经尝试过,但仍然收到错误。我是否需要再连接,例如 container_url + "?sp=r&st=2021-03-08T12:12:14Z&"+ sas_token?我可以在门户中生成的 SAS token ,至少看起来更像是这样。

import datetime
from azure.storage.blob import ContainerClient, BlobServiceClient, generate_container_sas, \
ResourceTypes, AccountSasPermissions

storage_conn_str = "myconstring fetched from the portal"

blob_service_client = BlobServiceClient.from_connection_string(storage_conn_str)

start = datetime.datetime.utcnow().replace(microsecond=0).isoformat() + "Z"
expiry = (datetime.datetime.utcnow() + datetime.timedelta(hours=3)).replace(microsecond=0).isoformat() + "Z"

sas_token = generate_container_sas(
blob_service_client.account_name,
container_name="containername",
account_key=blob_service_client.credential.account_key,
resource_types=ResourceTypes(container=True, object=True),
permission=AccountSasPermissions(read=True, write=True, list=True, add=True, create=True,
update=True),
start=start,
expiry=expiry,
protocol="https"
)

print(sas_token)

cclient = ContainerClient.from_container_url(
container_url="https://myblob.blob.core.windows.net/containername/",
credential=sas_token)

print(cclient.get_account_information())

最佳答案

我认为问题的出现是因为您混合了服务共享访问签名帐户共享访问签名

请尝试以下代码:

sas_token = generate_account_sas(
blob_service_client.account_name,
account_key=blob_service_client.credential.account_key,
resource_types=ResourceTypes(container=True, object=True),
permission=AccountSasPermissions(read=True, write=True, list=True, add=True, create=True,
update=True),
start=start,
expiry=expiry,
protocol="https"
)

这将生成帐户 SAS。我使用此代码来读取容器属性,如下所示:

cclient = ContainerClient.from_container_url(
container_url="https://account.blob.core.windows.net/container/",
credential=sas_token)
print(cclient.get_account_information())

我没有收到任何错误。

但请确保导入 generate_account_sas

关于azure - 使用 Python SDK 生成 Azure 容器 SAS token 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66532183/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com