PASSKEYS ON TOP OF FIREBASE AUTHENTICATION
Firebase Authentication does not ship a passkey provider, so the WebAuthn ceremony has to live beside it. Corbado runs that ceremony and hands the result back, leaving Firebase as your system of record.
Firebase stays the system of record while Corbado adds passkey-specific analytics and rollout controls on top.
Phase passkeys by cohort, app surface, region or device profile instead of forcing a one-shot launch.
Get passkey journey visibility and reporting that default IdP dashboards do not expose.
KEEP FIREBASE AS THE SYSTEM OF RECORD
The client runs the passkey ceremony, your backend verifies the signed response and delegates session creation to Firebase with a custom token. Your user records, claims and security rules stay exactly where they are.
// 1. Browser or app completes the passkey ceremony
const signedPasskeyData = await corbado.completeLogin();
// 2. Your backend verifies it, then delegates the session to Firebase
const { userId } = await corbado.verify(signedPasskeyData);
const firebaseToken = await admin.auth().createCustomToken(userId);
// 3. The client signs in to Firebase as usual
await signInWithCustomToken(getAuth(), firebaseToken);Enabling passkeys is the easy half. This guide covers the adoption, fallback and error signals that tell you whether users are really getting through.
PASSKEYS ROLLOUT OPERATIONS
Passkey APIs are only one layer. Enterprise rollouts also need governance, investigation workflows and reporting once real users hit production traffic.
Inspect registration, sign-in, recovery, fallback and drop-off patterns across real customer journeys.
Phase passkeys by cohort, device, browser or market and keep kill-switches ready when rollout conditions change.
Move from a vague ticket to one exact failing path instead of stitching together logs from multiple tools.
Keep your current IdP, session model and application flows while adding passkey-specific coverage on top.
Track browser, OS, authenticator and platform drift before rollout issues become expensive support queues.
Share adoption, failure patterns and business impact with IAM, product, security and support teams.
PASSKEY INTEGRATION RESOURCES FOR FIREBASE AUTHENTICATION
Use these to wire the passkey ceremony to Firebase and to check the rollout once it is live.
Corbado is the Passkey Intelligence Platform for large-scale CIAM teams running consumer authentication. We help you see what IDP logs and generic analytics tools can't: where passkeys, passwords, OTP, social login and fallback journeys succeed, stall or fail, which devices and browsers create friction, and when an OS update silently breaks login. Two products: Corbado Observe layers process mining and observability across authentication journeys. Corbado Connect adds managed passkeys with analytics built in alongside your IDP. VicRoads runs passkeys for 5M+ users with Corbado (+80% passkey activation). Talk to a Passkey Expert →
Run the passkey ceremony alongside Firebase Authentication and see adoption, fallback and errors per cohort before you widen the rollout.