0

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

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();

我复制了他们的代码,它仍然是一样的。我完全没主意了。

4

1 回答 1

3

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

于 2013-04-08T08:55:22.737 回答