我正在设置 Azure 存储模拟器,但是当我尝试将 blob 放入容器时,我得到了上述异常。
我正在使用 Windows Azure Storage Emulator 4.4.0.0。
我的代码(Microsoft.WindowsAzure.Storage 的 4.3.0.0 和 7.0.0.0 版本)以及最新版本的 Microsoft Azure Storage Explorer (0.7.20160509.0) 中出现了同样的错误。在代码中,失败的方法是CloudBlockBlob.UploadFromStream(myStream source)。
我已经连接了 Fiddler 代理并将请求与Azure Blob REST API进行了比较,对我来说它看起来不错。
要求:
PUT http://127.0.0.1:10000/devstoreaccount1/public/broker/broker_placeholderLogo.png HTTP/1.1
User-Agent: Azure-Storage/7.0.0 (.NET CLR 4.0.30319.42000; Win32NT 10.0.10586.0)
x-ms-version: 2015-07-08
Content-MD5: 1/VCBZRjnuUQPBtMviZfzw==
x-ms-blob-type: BlockBlob
x-ms-client-request-id: fec3ada1-653b-46ec-81f0-a1602baab494
x-ms-date: Wed, 25 May 2016 14:01:17 GMT
Authorization: SharedKey devstoreaccount1:60ts48q7J714f74GWTA3sbICqGvxqg2NXPWjZQH/IXA=
Host: 127.0.0.1:10000
Content-Length: 10748
回复:
HTTP/1.1 400 One of the request inputs is not valid.
Content-Length: 220
Content-Type: application/xml
Server: Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-request-id: 8882fa90-80d0-4043-a997-836f645bc349
x-ms-version: 2015-07-08
Date: Wed, 25 May 2016 14:01:17 GMT
<?xml version="1.0" encoding="utf-8"?><Error><Code>InvalidInput</Code><Message>One of the request inputs is not valid.
RequestId:8882fa90-80d0-4043-a997-836f645bc349
Time:2016-05-25T14:01:17.5245914Z</Message></Error>
容器创建得很好,所以我认为这不是授权问题。我对可能导致此问题的原因一无所知。
更新:我尝试删除 MD5 验证,但没有任何区别。