Blob上传未经授权的服务器无法验证请求异常

时间:2013-04-08 08:45:55

标签: c# azure azure-storage-blobs

我一周前使用过此代码,一切都很好。我的同事们仍在使用完全相同的代码,他们完全没有问题。

StorageCredentialsAccountAndKey heronStorage = new StorageCredentialsAccountAndKey("heron", "someKey");
CloudBlobClient blobClient = new CloudBlobClient("someUrl", heronStorage);
CloudBlobContainer container = blobClient.GetContainerReference("containerName");
container.CreateIfNotExist();
container.SetPermissions(new BlobContainerPermissions { PublicAccess = BlobContainerPublicAccessType.Blob });

此代码抛出:"Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature."container.CreateIfNotExist();行。

我复制了他们的代码,但它仍然是一样的。我完全没有想法。

1 个答案:

答案 0 :(得分:3)

确保系统时钟正确同步,错误的时区和不正确的同步导致哈希失败。服务器使用时间作为同步的一部分来验证请求。