Passkeys/WebAuthn
Try it out!
Use the form to log in with Passkeys using SlashID.
Authenticate using Passkeys
Follow the instructions
You'll be prompted to validate your login via your device.
If you are registering for the first time, you will receive an email
to verify your email address.
SlashID/Core SDK
Under the hood
Provide a seamless authentication experience with a single method call!
const sid = new window.slashid.SlashID()
const user = await sid.id(
SLASHID_ORG_ID,
{
type: 'email_address',
value: 'test@example.com',
},
{
method: 'webauthn',
// optional WebAuthn configuration
options: {
attachment: 'any',
user_verification: 'required',
resident_key: 'preferred',
attestation: 'indirect'
},
}
)
javascript
19/19 ln