You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m using tauri-plugin-upload to send files to a Google Cloud Storage bucket, but GCS presigned URLs for non-resumable uploads require PUT requests--currently the plugin only supports POST.
It would be great if the plugin allowed specifying the HTTP method (e.g., PUT) for uploads. This would make it compatible with GCS and similar services. For now, I'm writing Rust, but I love the simplicity of this API and wish it worked for my use case.