I found supabase a couple months ago and was disappointed that there was no Java client so I created my own. It has basic database and storage features implemented.
// Starting the client
SupabaseRestClient supabase = new SupabaseRestClient(YOUR_SUPABASE_URL, YOUR_SUPABASE_KEY);
// Inserting a new user to the table users
supabase.databse().insert("users", Insert.row().column("email", "user@email.com")
.column("username", "user123"));
// Using storage (uploading a file)
supabase.storage().upload("mybucket/test.txt", new byte[]{1,2,3,4,5});
Feel free to fork it. I can change the license if it makes anything easier.
Hello,
I found supabase a couple months ago and was disappointed that there was no Java client so I created my own. It has basic database and storage features implemented.
It's very simple to use:
Feel free to fork it. I can change the license if it makes anything easier.
https://github.com/Harium/supabase-java