我正在尝试为 webauthn api 创建一个爱好项目。我有一个创建凭据的页面,它(正确地)提示我们使用安全密钥。我想在我的 mac 上使用我的 touchid(在三星 s9 上)或 touchid 来创建凭证(这似乎不起作用)。我需要做任何额外的事情才能使用 touch id 吗?
下面是创建凭证的代码(我已经更改了域名)。
<script type="text/javascript">
let randomStringFromServer = `sdflksdf934mnsdfsdfimlsndfbop1asd239dsfsdfkllkjsdf`;
const publicKeyCredentialCreationOptions = {
challenge: Uint8Array.from(randomStringFromServer, c =>
c.charCodeAt(0)
),
rp: {
name: "Mr Tom",
id: "helloworld.com"
},
user: {
id: Uint8Array.from("UZSL85T9AFC", c => c.charCodeAt(0)),
name: "hello@world.com",
displayName: "MrTom"
},
pubKeyCredParams: [{ alg: -7, type: "public-key" }],
authenticatorSelection: {
authenticatorAttachment: "cross-platform"
},
timeout: 60000,
attestation: "direct"
};
const credential = await navigator.credentials.create({
publicKey: publicKeyCredentialCreationOptions
});
console.log(credential);
</script>