An unofficial Java client for Supabase.
Currently, this library has basic support to database operations and storage.
// Starting the client
SupabaseClient supabase = new SupabaseClient(YOUR_SUPABASE_URL, YOUR_SUPABASE_KEY);
// Listing all buckets
StorageAPI storageAPI = supabase.storage();
List<Bucket> buckets = storageAPI.listBuckets();
// Upload a file
storageAPI.upload("mybucket/test.txt", "hello".getBytes());- Authentication
- ...