gpt4 book ai didi

azure - 如何使用 DefaultAzureCredential 类创建 Azure 存储 SAS token

转载 作者:行者123 更新时间:2023-12-02 07:18:01 24 4
gpt4 key购买 nike

我想创建 SAS token 来下载存储在 Azure 存储中的容器中的 Blob。我可以使用共享凭证轻松生成 SAS token ,但这需要存储访问 key 。如何使用托管身份生成 sas token 。

        credential, err := azblob.NewSharedKeyCredential(accountName, accountKey)
sasQueryParams, err := azblob.BlobSASSignatureValues{
Protocol: azblob.SASProtocolHTTPS,
ExpiryTime: time.Now().UTC().Add(4 * time.Hour),
ContainerName: containerName,
BlobName: blobName,
Permissions: azblob.BlobSASPermissions{Add: false,
Read: true, Write: false}.String(),
}.NewSASQueryParameters(credential)

最佳答案

How can I generate sas token using managed Identity?

您可以使用 DefaultAzureCredential 和存储容器中该 blob 的正确访问来生成它。

使用默认 Azure 凭据类的 Azure AD 凭据连接到存储帐户。

示例代码:

    var strgAccName = _configuration.GetValue<string>("YourStorageAccountName");
var saUri = $"https://{strgAccName}.blob.core.windows.net";
var blobServiceClient = new BlobServiceClient(new Uri(saUri), new DefaultAzureCredential());
var blobContainerClient = blobServiceClient.GetBlobContainerClient(_configuration.GetValue<string>("YourContainerName"));
var blobClient = blobContainerClient.GetBlobClient("YourImage.jpg");
// We can issue the SAS token till a maximum of 7 days.
var userDelegationKey = blobServiceClient.GetUserDelegationKey(DateTimeOffset.UtcNow,
DateTimeOffset.UtcNow.AddHours(4));

var sasBuilder = new BlobSasBuilder()
{
BlobContainerName = blobClient.BlobContainerName,
BlobName = blobClient.Name,
Resource = "b", // b: blob, c: container
StartsOn = DateTimeOffset.UtcNow,
ExpiresOn = DateTimeOffset.UtcNow.AddHours(4),
};

sasBuilder.SetPermissions(BlobSasPermissions.Read);
var blobUriBuilder = new BlobUriBuilder(blobClient.Uri)
{
Sas = sasBuilder.ToSasQueryParameters(userDelegationKey,blobServiceClient.AccountName)
};
// Read this in any view like `blobUriBuilder.ToUri().ToString();`
}

并重新检查该 blob 是否存在委派访问权限。因此,我们不为此使用任何访问 key 和连接字符串。

感谢@Anupam Maiti为此Article ,请参阅此处了解分步过程。

关于azure - 如何使用 DefaultAzureCredential 类创建 Azure 存储 SAS token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73023464/

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