我在执行blobcontainer.CreateIfNotExist();
我的工人角色时遇到问题,说明这一点:
Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
在开始时,我认为问题可能是我的本地计算机日期(因为我来自南美洲)所以我添加了 Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
但错误仍然存在..
我获取与存储连接的配置的方式是这样的:
var storageAccount = CloudStorageAccount.Parse(RoleEnvironment.GetConfigurationSettingValue("dataconnectionstring"));
这是:
<Setting name="dataconnectionstring" value="DefaultEndpointsProtocol=https;
AccountName=devstoreaccount1;
AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==" />
可能是什么问题呢?