升级我的Azure Storage Explorer版本后,我的代码停止使用以下消息:
“此版本不支持此请求的REST版本 存储模拟器。请将存储模拟器升级到 最新版本。有关更多信息,请参阅以下URL: http://go.microsoft.com/fwlink/?LinkId=392237“
我的Azure Storage Explorer版本是0.8.16。
基本上,上传到azure的代码往往是:
CloudStorageAccount storageAccount = CloudStorageAccount.Parse("UseDevelopmentStorage=true");
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer blobContainer = blobClient.GetContainerReference("mycontainer");
blobContainer.CreateIfNotExistsAsync();
CloudBlockBlob blockBlob = this.blobContainer.GetBlockBlobReference(fileName);
byte[] CoverImageBytes = null;
BinaryReader reader = new BinaryReader(file.OpenReadStream());
CoverImageBytes = reader.ReadBytes((int)file.Length);
await blockBlob.UploadFromByteArrayAsync(CoverImageBytes, 0,(int)file.Length);
异常抛出最后一行。
更新
1)您正在运行的存储模拟器的版本是什么?
V5.1
2)在您的代码中,您正在使用的Storage Client库的版本是什么?
8.4.0 here
答案 0 :(得分:5)
您收到此错误的原因是Storage Client Library 8.4的目标是REST API版本2017-04-17
,其中Storage Emulator V5.1以REST API版本2016-05-31
为目标。
你可以做以下两件事之一:
2016-05-31
。我的建议是使用#1,即使用最新版本的存储模拟器。