From 320c4c44f52ce8724c23d1d83010d8ae32eaed97 Mon Sep 17 00:00:00 2001 From: pilcrowOnPaper Date: Tue, 19 Mar 2024 21:55:04 +0900 Subject: [PATCH] add disclaimer --- src/posts/passkeys-typescript-web-api.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/posts/passkeys-typescript-web-api.md b/src/posts/passkeys-typescript-web-api.md index 96c83b5..e3ba4a6 100644 --- a/src/posts/passkeys-typescript-web-api.md +++ b/src/posts/passkeys-typescript-web-api.md @@ -4,6 +4,8 @@ description: "Experimenting with passkeys on the browser, and some thoughts on i date: "2023-8-1" --- +> This page has numerous grammatical and technical mistakes. Refer to the guide in [the Copenhagen Book](https://thecopenhagenbook.com/passkeys). + While working on Lucia, I had a few feature requests for passkey support. Passkeys allow users to sign in using their device via biometrics or device PIN instead of regular passwords. To learn how it works, I decided to implement a simple demo using TypeScript. I also thought it would be a fun challenge to implement it from scratch using Wev APIs since I recently implemented JWT and Apple OAuth with the same constraints.