Upload a file to Cloud Storage issue with aspose.cloud dashboard

I am trying to upload a file via Aspose CLOUD frontend.
https://dashboard.aspose.cloud/#/files

Even though it seem that the file is being uploaded, it does NOT exist in Aspose afterwards.
Looking that the network tab, it seems that I am getting a blocked message.

See the picture attached.
I have tried it in different browsers and not joy in any.
I am logged in.

This is urgent - can you please advise.

image.png (348.2 KB)

this is what I get in the console tab:
image.png (45.9 KB)

It just amazes me that this is broken!

@aspose.heffron.au

Thank you for contacting Aspose.Support.

We have been able to observe the issue you are facing. I will get in touch with our product team to have this issue resolved at the earliest. In the mean while you can use our SDKs to upload files to the cloud. You can find a example below

 Path inputFile = Utils.getPath(UploadFileToAsposeCloudStorageExample.class, "testfile.txt");
 System.out.println(inputFile.toFile().getAbsolutePath());
 try
   {   StorageApi storageApi = new StorageApi(Configuration.apiKey, Configuration.appSID, true);
       storageApi.PutCreate("TestFile.txt", "", "",inputFile.toFile());
   }
    catch (Exception ex) {
        ex.printStackTrace();
   }

We apologize for the inconvenience.

Can I please have an estimation on when this will be fixed?

@aspose.heffron.au

We have deployed a fix for it, should work fine now.
Sorry for the inconvenience.