Cannot upload to azure Blob Storage: The remote server returned an error: (400) Bad Request

前端 未结 6 2164
星月不相逢
星月不相逢 2021-02-19 16:48

I\'m trying to create a utility to download file from the internet and upload it again to Azure blob storage. Blob containers already created well; But for some reason i\'m get

6条回答
  •  余生分开走
    2021-02-19 17:07

    I also got this error with the Azure Storage Message Queues.

    The Azure Storage Message Queue names must also be all lowercase. ie: "newqueueitem" name in lowercase.

    // Retrieve a reference to a queue.
    CloudQueue queue = queueClient.GetQueueReference("newqueueitem");
    
    // Create the queue if it doesn't already exist.
    queue.CreateIfNotExists();
    

提交回复
热议问题