Pure WebAuthn API Demo
Note: You can also use credentials registered on marks-simplewebauthn-example.retool.services
retool.servicesThis demo uses the browser's native navigator.credentials.get() with no libraries!
// Authenticate with passkey
const credential = await navigator.credentials.get({
publicKey: {
challenge: new Uint8Array(32), // Random challenge
rpId: 'retool.services',
userVerification: 'preferred',
timeout: 60000
}
});