From b507f16de5ecbf282d26c17242a4e3a97ce63f3f Mon Sep 17 00:00:00 2001 From: Tracy <38665906+TracyGH@users.noreply.github.com> Date: Fri, 1 Feb 2019 17:15:00 -0600 Subject: [PATCH] Added comment with guidance for various Azure storage account configurations. --- StorageRestApiAuth/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StorageRestApiAuth/Program.cs b/StorageRestApiAuth/Program.cs index 744aa90..0d11805 100644 --- a/StorageRestApiAuth/Program.cs +++ b/StorageRestApiAuth/Program.cs @@ -32,8 +32,8 @@ private static void Main() private static async Task ListContainersAsyncREST(string storageAccountName, string storageAccountKey, CancellationToken cancellationToken) { - // Construct the URI. This will look like this: - // https://myaccount.blob.core.windows.net/resource + // Construct the URI. + // **Update to https if you have 'Secure transfer required' enabled on your Azure storage account.** String uri = string.Format("http://{0}.blob.core.windows.net?comp=list", storageAccountName); // Set this to whatever payload you desire. Ours is null because