Is there any reference video or smth on how top verify users by sending otp on their mail
Hi, I think I sent some examples here: https://discord.com/channels/564160730845151244/1113022806138048532/1113028326467063839
But, no video is available as of now, let me dig deeper to see if we have some example implemented
yes please
You can try passwordless login (magic link). You enter email. You check inbox, and click a button in mail. Then you are logged in.
Example usage: To send email: https://github.com/Meldiron/authui/blob/main/src/lib/magic-url.svelte Callback URL logic: https://github.com/Meldiron/authui/blob/main/src/lib/magic-url-finish.svelte
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...