I want to implement face authentication in my application (next js framework) using appwrite....do anybody have idea about what exact changes we need to make in code and appwrite project(database,storage)....is this possible by using face-recognition library provided by openCV or do anybody have idea about other alternatives?
Heyy. I recently wrote article on how to do Passkey login with Appwrite Functions: https://dev.to/meldiron/biometric-authentication-with-passkeys-3e1
Not sure if it matches what you are looking for exactly, but you can use it to inspire your implementation.
The authentication flow happens in following steps:
- Server authenticates user
- Server upsert user (create / update)
- Server generates token
- Server returns token secret to user
- Client uses token secret to claim a session
(In those example, server means Appwrite Functions)
Recommended threads
- IMPORTANT! SOC-2 Request Failing
Issue requesting SOC-2. If tried other/private browser as well as filling in optional fields.
- Can you suppress row $meta data?
When using listRows with a 'select' query to limit the response [for performance], I'm still getting extra columns (eg. `$id`, `$sequence`, `$createdAt`, `$upda...
- How can I disable client-side account re...
Hi everyone! I’m currently building a game backend using Appwrite, and I’d like to prevent users from creating new accounts directly through the client. My go...