SupabaseDB : With Authentication and Database

This is simple extension made using supabase api. Now it supports both Authentication and Database. I suggest to use SupabaseDB only for reading data .While you work with create , update & delete use it with authentication.

MIT App Inventor(2)

Supabase Real-time Database also available for 10 USD if anyone interested send me PM.

Download from here :-
https://drive.google.com/drive/folders/1l_Rwz4oXmFMXNZIwjp6g58OwD8v6FhCJ?usp=sharing

6 Likes

If anyone interested in test beta version of advanced supabase send me pm.

2 Likes

Full version ,

com.xtiger.supabaseauth.aix (30.7 KB)

com.xtiger.supabasedb.aix (31.6 KB)


MIT App Inventor(2)

2 Likes

Be aware that Supabase itself is not really a free alternative to TinyWebDB.

The reality is:

and the extension serves as an advertisement for Supabase.

1 Like

:joy:

Its not advertisement , i found many topics related to supabase in app inventor and kodular community ,thats why i made it.

1 Like

Very good extension (though we can make it more advance using their KMT sdk). I think supabase is best open source alternative to firebase. And its far far better than baserow in terms of security and scalability. Again very good.

2 Likes

Small update ,
Now you don't need to use web component to decode JSONtodictionary and JSON to list also added.

Untitled

pelase add "run sql"

where the new update? and how to get only 10 data every colom?

sorry i cant update new version foor now ,

use limit=10 in filter to get 10 datas

1 Like

thank you

hello it work , how to get another 10 data after 10 data before?

maybe limit=10&offset=10

please check in their documentation.

1 Like

ok thanks

hello can you help me:
i have data example :

id | name

1 | A
2 | B
3 | C
4 | D
5 | E
why if i change data on supabase table :
example :
1 | A
2 | FDGDH
3 | C
4 | D
5 | E

then the data I get is not sorted according to ID :
1 | A
3 | C
4 | D
2 | FDGDH
5 | E

Read supabase rest api documentation to see how top post data.

2 Likes

Use order=id.asc if you need order by id , replace id with name if you want to do with name , use & to join multiple querrys ,
i will list some important querry list .

1 Like

many thanks :+1: