gpt4 book ai didi

powershell - 使用 SAS token 上传 Blob 内容

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

我在使用 Blob SAS token 通过 Powershell 将文件写入 Azure 中的 Blob 时遇到困难。

我用来生成 SAS token 的代码是:

$storageContext = Get-AzureRmStorageAccount -ResourceGroupName $resourceGroup -Name $storageName

$token = New-AzureStorageBlobSASToken -Container $conName -Context $storageContext.Context -Blob $blobName -ExpiryTime $expiry -Permission rw -FullUri

这会按预期生成 token :https://name.blob.core.windows.net/container/test.json?sv=2015-04-05&sr=b&sig=abc123&se=2017-03-07T12 %3A58%3A52Z&sp=rw

如果我在浏览器中使用它,它工作正常并按预期下载文件。但是,我无法使用它来上传文件。每当我尝试时,我都会收到 (403) Forbidden。我用来上传的代码是:

$accountContext = New-AzureStorageContext -SasToken $sasToken

Get-AzureStorageContainer -Context $accountContext.Context | Set-AzureStorageBlobContent -File $blobFile

在调用 Add-AzureRmAccount 进行身份验证后,我已成功使用与此类似的方法来设置 Blob 内容。

我还尝试过使用 Container SAS token ,但始终收到 403 错误。

token 用于读取的事实让我相信我在 Powershell 脚本中遗漏了某些内容 - 谁能解释一下它是什么?

最佳答案

The fact that the token works for a read leads me to believe that I'm missing something in my Powershell script - can anyone shed any light on what that is?

我认为问题出在以下代码行:

Get-AzureStorageContainer -Context $accountContext.Context

这里有两件事:

  1. 此 cmdlet 尝试列出存储帐户中的 Blob 容器。为了使用 SAS 列出 Blob 容器,您需要一个Account SAS,其中您使用的 SAS 是一个Container SAS
  2. 您的 SAS 仅具有读取写入权限。要列出容器,您还需要 List 权限。

我建议仅使用 Set-AzureStorageBlobContent Cmdlet 并向其提供必要的信息,而不是通过管道获取容器名称。

Set-AzureStorageBlobContent -File $blobFile -Container $conName -Context $accountContext.Context -Blob $blobName

关于powershell - 使用 SAS token 上传 Blob 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42646997/

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