- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 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
这里有两件事:
Account SAS
,其中您使用的 SAS 是一个Container 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/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!