使用 SAS 从 Azure 存储下载 blob
Download blob from Azure Storage with SAS
我很难弄清楚如何使用 .net 和生成的共享访问签名令牌从 Azure 存储下载 blob。
首先,我能找到的大多数教程都使用 Microsoft.Azure.Management.Storage
nuget 包,该包已被弃用。相反,我使用最新的 Azure.Storage.Blobs
包。
到目前为止我有以下代码。我不知道如何处理生成的 SAS 令牌。我如何从那里下载 blob?
[HttpGet]
public async Task<IActionResult> Download([FromQuery] string blobUri)
{
BlobServiceClient blobServiceClient = new BlobServiceClient(this.configuration.GetConnectionString("StorageAccount"));
// Create a SAS token that's valid for one hour.
BlobSasBuilder sasBuilder = new BlobSasBuilder()
{
BlobContainerName = "my container name",
BlobName = blobUri,
Resource = "b",
StartsOn = DateTimeOffset.UtcNow,
ExpiresOn = DateTimeOffset.UtcNow.AddHours(1)
};
// Specify read permissions for the SAS.
sasBuilder.SetPermissions(BlobSasPermissions.Read);
// Use the key to get the SAS token.
var sasToken = sasBuilder.ToSasQueryParameters(new Azure.Storage.StorageSharedKeyCredential("my account name", "my account key"));
BlobClient blob = blobServiceClient.GetBlobContainerClient("my container name").GetBlobClient($"{blobUri}");
await using (MemoryStream memoryStream = new MemoryStream())
{
await blob.DownloadToAsync(memoryStream);
return File(memoryStream, "file");
}
}
在官方 github 存储库中,您可以找到使用各种身份验证方式的绝佳示例。在 sample is called SharedKey. There is also a sample to use SAS tokens 中使用帐户密钥 - 但您需要以某种方式生成这些密钥。通常您使用帐户密钥执行此操作...
另一个选项——如果可能的话我会推荐使用的是AAD (Azure Active Directory)-based auth。在这种情况下,您不需要帐户密钥或 SAS 令牌。
有关各种示例,请参见此处:
https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs
我很难弄清楚如何使用 .net 和生成的共享访问签名令牌从 Azure 存储下载 blob。
首先,我能找到的大多数教程都使用 Microsoft.Azure.Management.Storage
nuget 包,该包已被弃用。相反,我使用最新的 Azure.Storage.Blobs
包。
到目前为止我有以下代码。我不知道如何处理生成的 SAS 令牌。我如何从那里下载 blob?
[HttpGet]
public async Task<IActionResult> Download([FromQuery] string blobUri)
{
BlobServiceClient blobServiceClient = new BlobServiceClient(this.configuration.GetConnectionString("StorageAccount"));
// Create a SAS token that's valid for one hour.
BlobSasBuilder sasBuilder = new BlobSasBuilder()
{
BlobContainerName = "my container name",
BlobName = blobUri,
Resource = "b",
StartsOn = DateTimeOffset.UtcNow,
ExpiresOn = DateTimeOffset.UtcNow.AddHours(1)
};
// Specify read permissions for the SAS.
sasBuilder.SetPermissions(BlobSasPermissions.Read);
// Use the key to get the SAS token.
var sasToken = sasBuilder.ToSasQueryParameters(new Azure.Storage.StorageSharedKeyCredential("my account name", "my account key"));
BlobClient blob = blobServiceClient.GetBlobContainerClient("my container name").GetBlobClient($"{blobUri}");
await using (MemoryStream memoryStream = new MemoryStream())
{
await blob.DownloadToAsync(memoryStream);
return File(memoryStream, "file");
}
}
在官方 github 存储库中,您可以找到使用各种身份验证方式的绝佳示例。在 sample is called SharedKey. There is also a sample to use SAS tokens 中使用帐户密钥 - 但您需要以某种方式生成这些密钥。通常您使用帐户密钥执行此操作...
另一个选项——如果可能的话我会推荐使用的是AAD (Azure Active Directory)-based auth。在这种情况下,您不需要帐户密钥或 SAS 令牌。
有关各种示例,请参见此处: https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/storage/Azure.Storage.Blobs/samples/Sample02_Auth.cs