buckets
table permissions: noneobjects
table permissions: noneThe path of the file you want to upload.
The token you received from `createSignedUploadUrl`.
The data of the file you want to upload.
supabase.storage.from("avatars").uploadToSignedUrl(path = "avatar.jpg", token = "token-from-createSignedUploadUrl", data = bytes)
//or on JVM:
supabase.storage.from("avatars").uploadToSignedUrl(path = "avatar.jpg", token = "token-from-createSignedUploadUrl", file = File("avatar.jpg"))