Is there a way to check if a user is registered within the account api? Firebase has a function for this call "fetchSignInMethodsForEmail".
I want to achive, that a user enters the email adress and conditionally on the result i show a sign in or sign up flow (using Flutter)
I think this is generally discouraged, as it helps brute-forcing accounts.
I understand the argument - but even Airbnb uses this procedure
(and also google uses this..)
Sure. So if you do actually want to do this, you could use an Appwrite Function, which would call the users.list() method.
Thanks, have to check
works really straightforward, thanks!
Great! If your issue has been solved, you can mark this post as closed by adding “[SOLVED]” to the beginning of the title
[SOLVED] Check if user is registered (with Email)
Recommended threads
- Realtime: Listener not triggered on upda...
I self host appwrite 1.8.1. The genereal functionallity works fine. But my realtime subscription isn't updating. I see "Received heartbeat response from realtim...
- Impossible to get USER after createEmail...
Am using provider to deal with functions linked to appwrite. Here is my login. Future<String?> login(String email, String password) async { try { aw...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...