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
- Query multi-tenant db with $permissions ...
I'm setting up a multi-tenant database with RLS enabled. My users my have permissions set for multiple Teams, and as such when they query the database with the ...
- Authentication on custom Websocket Serve...
Hi, I want to use a custom Websocket Server (using Bun) for my application. However I cant really figure out authentication on custom servers. Session cookies ...
- My account got banned without obvious re...
Hello, I’m a normal user of Appwrite. Today I found my account was banned suddenly, and I can’t log in normally. I have only been doing normal development and...