I am trying to upload files to an URL that is not in my control and it requires the PUT HTTP method. The Telerik Blazor Upload always uses a POST.
I imagine API like this would be nice:
<TelerikUpload SaveUrl="@SaveUrl" SaveMethod="PUT">
</TelerikUpload>
---
ADMIN EDIT
In the meantime, there are two possible solutions:
---
Allowing PUT could make uploads directly to Azure Blob Storage possible, when you do this now you get a error back from the Blob REST API that says the POST verb is not allowed.
My understanding is that the control can to upload to Amazon cloud storage because it allows POST uploads, I see Telerik as the leader in Microsoft compatibility but this control does not support direct uploads to Azure like it does with Amazon?