I have followed the instructions in the tutorial and i get exception of authorization
com.microsoft.azure.storage.StorageException: Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
my code is
val storageConnectionString = "DefaultEndpointsProtocol=https;AccountName=xxx;AccountKey=xxx"
val storageAccount: CloudStorageAccount = CloudStorageAccount.parse(storageConnectionString);
val blobClient: CloudBlobClient = storageAccount.createCloudBlobClient();
val container: CloudBlobContainer = blobClient.getContainerReference("imagesvhd");
container.createIfNotExists()
I have followed the instructions in the tutorial and i get exception of authorization
com.microsoft.azure.storage.StorageException: Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature.
my code is
val storageConnectionString = "DefaultEndpointsProtocol=https;AccountName=xxx;AccountKey=xxx"
val storageAccount: CloudStorageAccount = CloudStorageAccount.parse(storageConnectionString);
val blobClient: CloudBlobClient = storageAccount.createCloudBlobClient();
val container: CloudBlobContainer = blobClient.getContainerReference("imagesvhd");
container.createIfNotExists()