You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Passkeys are built on the Web Authentication API (WebAuthn), which is a W3C standard for secure, passwordless authentication. WebAuthn allows users to authenticate using biometrics (e.g., fingerprint, facial recognition) or hardware security keys.
FIDO_SERVER_ID="localhost" # Server rp id for FIDO2, it the full domain of your project
FIDO_SERVER_NAME="TestApp"
import passkeys
KEY_ATTACHMENT = None | passkeys.Attachment.CROSS_PLATFORM | passkeys.Attachment.PLATFORM
The text was updated successfully, but these errors were encountered:
Passkeys are built on the Web Authentication API (WebAuthn), which is a W3C standard for secure, passwordless authentication. WebAuthn allows users to authenticate using biometrics (e.g., fingerprint, facial recognition) or hardware security keys.
For this, I would suggest a quite popular library called
django-passkeys
: https://github.com/mkalioby/django-passkeys.Login with PassKey
on the login pageThere are some settings that are a bit unclear to me from the library's README which are mentioned here: https://github.com/mkalioby/django-passkeys/blob/d9dbf3b2352229da79e0d56d2060a2d84c78998b/README.md?plain=1#L48-L51
The text was updated successfully, but these errors were encountered: