Supabase Auth supports anonymous sign-ins
supabase.com
Supabase Auth supports anonymous sign-ins
1–9 of 9 posts
Re: Supabase Auth supports anonymous sign-ins
#2Re: Supabase Auth supports anonymous sign-ins
#3Re: Supabase Auth supports anonymous sign-ins
#4Re: Supabase Auth supports anonymous sign-ins
#5I wonder if that means Supabase can solve the (separate) user storage problem[1].
[1]: https://threadreaderapp.com/thread/1651434348174778370.html
Re: Supabase Auth supports anonymous sign-ins
#6Re: Supabase Auth supports anonymous sign-ins
#7Supabase also offers data (DB as a service). I wonder if that means Supabase can solve the (separate) user storage problem[1]. [1]: https://threadreaderapp.com/thread/1651434348174778370.html
Re: Supabase Auth supports anonymous sign-ins
#8I wonder how anonymous user sign-in info is persisted on the client. Specifically, I want to know whether re-installing the App will make it forget the previous anonymous sign-in.
in a web app, we store this stare in either local storage / cookies
in a mobile app, this state is stored in the local storage equivalent - SharedPreferences for android and NSUserDefaults for IOS
Re: Supabase Auth supports anonymous sign-ins
#9Supabase also offers data (DB as a service). I wonder if that means Supabase can solve the (separate) user storage problem[1]. [1]: https://threadreaderapp.com/thread/1651434348174778370.html
supabase auth stores your users in the same database created, just in a separate schema so you have full access to it to perform joins or enforce referential integrity.
FaunaDB also integrates DBaaS with their auth, but FaunaDB is a very different DB that doesn't work with standard SQL.
And FaunaDB doesn't have support for anonymous users!