Is native sign in with google / apple in Flutter possible with Appwrite?
just a note, and I'm really not trying to be mean: I thought of this as the most basic and important part of oauth. Almost all mobile apps have this, if not all 🤷♂️ Required webview gives a ton of friction which users are not used to and also users can't use face id to sign in. It's really weird, not sure Apple would even allow this kind of thing + it lowers signup conversions by a lot
Appwrite supports any auth method via Custom token login.
We had a PoC internally where we used a service that analyzed your typing pattern to authenticate you 😅
oh my bad, never worked with that before. thanks, hopefully its simple to implement 😄
might be nice addition to some docs or blog / video where you show how to do that for people who are more used to other BaaS (supabase, firebase, ...)
yes, that is in the works. We have a github issue: https://github.com/appwrite/appwrite/issues/9015
with some details about how it can be implemented
we plan on creating Appwrite Functions to do this and a blog/tutorial/article with some more info
but, if you're in a rush, you can grab the function template yourself: https://github.com/appwrite/templates/pull/332
oh so i will basically need to create appwrite function which does this
But this is just for Apple. Google one is still in the works
yeah thanks a lot!! i really don't mind anything as long as it works, it was supposed to be a 15 minute thing to be honest
is it not possible to just directly add it to cloud console/client sdks in the future? similar fashion to supabase for example
maybe, but it's quite a narrow scope: a specific endpoint just for apple and a specific endpoint just for google. plus Console side changes
yeah maybe, but its kinda important for mobile apps - not many sign-up-required apps exist without it anymore.
but ofc, up to you to decide
but with nice little youtube video and the 2 templates, it might be so easy (hopefully) it wont be needed
Recommended threads
- I recently switched to TablesDb. When li...
olddb.list_documents( queries =[ Query.order_desc("timestamp"), Query.equal("isPosted",[False]) ] ) Above works fine and reruns documents But below don't return...
- Database error validating 'min' and 'max...
I keep seeing an error when I try to add a column to a database table within the AppWrite cloud UI. I also see this error when trying to create or update a reco...
- Fine grained permissions for webRTC hand...
Hi, I am building a WebRTC P2P app for a university project and have hit a security limitation regarding permissions for anonymous users. The Architecture: We ...