こんにちは、問題があります....既にキューを作成しましたが、別のキューを作成する必要があるため、次のコードを記述します。
CloudStorageAccount storageAccount =
CloudStorageAccount.parse (storageConnectionString);
CoudQueueClient queueClient1= storageAccount.createCloudQueueClient();
Cloud Queue queue1 =queueClient1.getQueueReference("my-queue");
queue1.createIfNotExist ();
最初のキューは「myqueue」と呼びましたが、この新しいキューは「my-queue」と呼びましたが、このコードを実行すると:
queue1.createIfNotExist();
スローされる例外は、The value for one of the HTTP headers is not in the correct format ....
誰かが理由を教えてくれますか?