docs/content/docs/plugins/passkey.mdx
Passkeys are a secure, passwordless authentication method using cryptographic key pairs, supported by WebAuthn and FIDO2 standards in web browsers. They replace passwords with unique key pairs: a private key stored on the user's device and a public key shared with the website. Users can log in using biometrics, PINs, or security keys, providing strong, phishing-resistant authentication without traditional passwords.
The passkey plugin implementation is powered by SimpleWebAuthn behind the scenes.
```package-install
npm install @better-auth/passkey
```
To add the passkey plugin to your auth config, you need to import the plugin and pass it to the `plugins` option of the auth instance.
```ts title="auth.ts"
import { betterAuth } from "better-auth"
import { passkey } from "@better-auth/passkey" // [!code highlight]
export const auth = betterAuth({
plugins: [
passkey(), // [!code highlight]
],
})
```
Run the migration or generate the schema to add the necessary fields and tables to the database.
<Tabs items={["migrate", "generate"]}>
<Tab value="migrate">
```package-install
npx auth migrate
```
</Tab>
<Tab value="generate">
```package-install
npx auth generate
```
</Tab>
</Tabs>
See the [Schema](#schema) section to add the fields manually.
```ts title="auth-client.ts"
import { createAuthClient } from "better-auth/client"
import { passkeyClient } from "@better-auth/passkey/client" // [!code highlight]
export const authClient = createAuthClient({
plugins: [
passkeyClient() // [!code highlight]
]
})
```
You can customize the passkey plugin to support passkey-first onboarding or WebAuthn extensions.
import { betterAuth } from "better-auth"
import { passkey } from "@better-auth/passkey"
export const auth = betterAuth({
plugins: [
passkey({
registration: {
// Default: true. Set false for passkey-first onboarding.
requireSession: false,
// Required if requireSession is false and no session exists.
resolveUser: async ({ ctx, context }) => {
// Validate context (e.g., a signed token), then create or load a user.
return { id: "user-id", name: "[email protected]" }
},
// Optional server-defined extensions
extensions: { credProps: true },
},
authentication: {
// Optional server-defined extensions
extensions: { credProps: true },
},
}),
],
})
When registration.requireSession is false, passkey registration can be initiated without a session. You can pass an opaque context to the registration options endpoint; it will be forwarded to resolveUser.
await auth.api.generatePasskeyRegistrationOptions({
context: "signed-registration-token",
})
When using passkey-first flows (registration.requireSession: false), pass the same context from the client when registering the passkey so the server can resolve the user during verification:
await authClient.passkey.addPasskey({
name: "Primary passkey",
context: "signed-registration-token",
})
To add or register a passkey make sure a user is authenticated and then call the passkey.addPasskey function provided by the client.
To sign in with a passkey you can use the signIn.passkey method. This will prompt the user to sign in with their passkey.
import { authClient } from "@/lib/auth-client";
// With post authentication redirect
await authClient.signIn.passkey({
autoFill: true,
// Optional extensions
extensions: { credProps: true },
fetchOptions: {
onSuccess(context) {
// Redirect to dashboard after successful authentication
window.location.href = "/dashboard";
},
onError(context) {
// Handle authentication errors
console.error("Authentication failed:", context.error.message);
}
}
});
You can use WebAuthn extensions through the client API by passing extensions. When returnWebAuthnResponse is true, the client returns webauthn.clientExtensionResults.
const result = await authClient.passkey.addPasskey({
name: "My Passkey",
extensions: {
// Example extension input (generic)
credProps: true,
},
returnWebAuthnResponse: true,
});
console.log(result.webauthn?.clientExtensionResults);
You can list all of the passkeys for the authenticated user by calling passkey.listUserPasskeys:
When a user registers a passkey without naming it, the stored name is left empty. You can show a friendly default in your UI instead, derived from the authenticator that created the credential.
Every passkey row carries an aaguid, the identifier of the authenticator model (for example Google Password Manager or 1Password). Better Auth stores it at registration and returns it from listPasskeys, so you resolve a label at the point you render passkeys. Because resolution happens at read time, an updated provider list applies to passkeys that already exist.
The plugin ships a small, best-effort lookup for the most common authenticators:
import { getAuthenticatorName } from "@better-auth/passkey";
const passkeys = await authClient.passkey.listUserPasskeys();
for (const passkey of passkeys.data ?? []) {
const label = passkey.name || getAuthenticatorName(passkey.aaguid) || "Passkey";
}
The built-in list is intentionally small and not authoritative. Many authenticators are missing, and privacy-preserving platforms report an all-zero AAGUID that resolves to nothing (Apple devices do this under the default attestation: "none" flow). Extend it with the exported commonAuthenticatorNames map, or resolve against the community-maintained source for full coverage:
import { commonAuthenticatorNames } from "@better-auth/passkey";
const names = { ...commonAuthenticatorNames, "your-aaguid": "Your Provider" };
To set a default label on the server at registration time, return a name from registration.afterVerification. The AAGUID is available on verification.registrationInfo.aaguid, and a client-supplied name always takes precedence:
import { betterAuth } from "better-auth";
import { passkey, getAuthenticatorName } from "@better-auth/passkey";
export const auth = betterAuth({
plugins: [
passkey({
registration: {
afterVerification: async ({ verification }) => ({
name: getAuthenticatorName(verification.registrationInfo?.aaguid),
}),
},
}),
],
});
You can delete a passkey by calling passkey.delete and providing the passkey ID.
The plugin supports conditional UI, which allows the browser to autofill the passkey if the user has already registered a passkey.
There are two requirements for conditional UI to work:
<Steps> <Step> #### Update input fieldsAdd the `autocomplete` attribute with the value `webauthn` to your input fields. You can add this attribute to multiple input fields, but at least one is required for conditional UI to work.
The `webauthn` value should also be the last entry of the `autocomplete` attribute.
```html
<label for="name">Username:</label>
<input type="text" name="name" autocomplete="username webauthn">
<label for="password">Password:</label>
<input type="password" name="password" autocomplete="current-password webauthn">
```
When your component mounts, you can preload the user's passkeys by calling the `authClient.signIn.passkey` method with the `autoFill` option set to `true`.
To prevent unnecessary calls, we will also add a check to see if the browser supports conditional UI.
<Tabs items={["React"]}>
<Tab value="React">
```ts
useEffect(() => {
if (!PublicKeyCredential.isConditionalMediationAvailable ||
!PublicKeyCredential.isConditionalMediationAvailable()) {
return;
}
void authClient.signIn.passkey({ autoFill: true })
}, [])
```
</Tab>
</Tabs>
Depending on the browser, a prompt will appear to autofill the passkey. If the user has multiple passkeys, they can select the one they want to use.
Some browsers also require the user to first interact with the input field before the autofill prompt appears.
To test your passkey implementation you can use emulated authenticators. This way you can test the registration and sign-in process without even owning a physical device.
The plugin require a new table in the database to store passkey data.
Table Name: passkey
export const passkeyTableFields = [ { name: "id", type: "string", description: "Unique identifier for each passkey", isPrimaryKey: true, }, { name: "name", type: "string", description: "The name of the passkey", isOptional: true, }, { name: "publicKey", type: "string", description: "The public key of the passkey", }, { name: "userId", type: "string", description: "The ID of the user", isForeignKey: true, references: { model: "user", field: "id" }, }, { name: "credentialID", type: "string", description: "The unique identifier of the registered credential", }, { name: "counter", type: "number", description: "The counter of the passkey", }, { name: "deviceType", type: "string", description: "The type of device used to register the passkey", }, { name: "backedUp", type: "boolean", description: "Whether the passkey is backed up", }, { name: "transports", type: "string", description: "The transports used to register the passkey", isOptional: true, }, { name: "createdAt", type: "Date", description: "The time when the passkey was created", isOptional: true, }, { name: "aaguid", type: "string", description: "Authenticator's Attestation GUID indicating the type of the authenticator", isOptional: true, }, ];
<DatabaseTable name="passkey" fields={passkeyTableFields} />rpID: A unique identifier for your website based on your auth server origin.
'localhost' is okay for local dev. RP ID can be formed by discarding zero or more labels from the left of its effective domain
until it hits an effective TLD. So www.example.com can use the RP IDs www.example.com or example.com. But not com, because that's an eTLD.
rpName: Human-readable title for your website.
origin: The origin URL at which your better-auth server is hosted. http://localhost and http://localhost:PORT are also valid. Do NOT include any trailing /.
authenticatorSelection: Allows customization of WebAuthn authenticator selection criteria. Leave unspecified for default settings.
authenticatorAttachment: Specifies the type of authenticator
platform: Authenticator is attached to the platform (e.g., fingerprint reader)cross-platform: Authenticator is not attached to the platform (e.g., security key)not set (both platform and cross-platform allowed, with platform preferred)residentKey: Determines credential storage behavior.
required: User MUST store credentials on the authenticator (highest security)preferred: Encourages credential storage but not mandatorydiscouraged: No credential storage required (fastest experience)preferreduserVerification: Controls biometric/PIN verification during authentication:
required: User MUST verify identity (highest security)preferred: Verification encouraged but not mandatorydiscouraged: No verification required (fastest experience)preferredadvanced: Advanced options
webAuthnChallengeCookie: Cookie name for storing WebAuthn challenge ID during authentication flow (Default: better-auth-passkey)When using the passkey plugin with Expo, you need to configure the cookiePrefix option in the Expo client to ensure passkey cookies are properly detected and stored.
By default, the passkey plugin uses "better-auth-passkey" as the challenge cookie name. Since this starts with "better-auth", it will work with the default Expo client configuration. However, if you customize the webAuthnChallengeCookie option, you must also update the cookiePrefix in your Expo client configuration.
If you're using a custom cookie name:
import { betterAuth } from "better-auth";
import { passkey } from "@better-auth/passkey";
export const auth = betterAuth({
plugins: [
passkey({
advanced: {
webAuthnChallengeCookie: "my-app-passkey" // Custom cookie name
}
})
]
});
Make sure to configure your Expo client with the matching prefix:
import { createAuthClient } from "better-auth/react";
import { expoClient } from "@better-auth/expo/client";
import { passkeyClient } from "@better-auth/passkey/client";
import * as SecureStore from "expo-secure-store";
export const authClient = createAuthClient({
baseURL: "http://localhost:8081",
plugins: [
expoClient({
storage: SecureStore,
cookiePrefix: "my-app" // Must match the prefix of your custom cookie name
}),
passkeyClient()
]
});
If you're using multiple authentication systems or custom cookie names, you can provide an array of prefixes:
expoClient({
storage: SecureStore,
cookiePrefix: ["better-auth", "my-app", "custom-auth"]
})
For more information on Expo integration, see the Expo documentation.