Re: [webauthn] Should an RP be able to provide finer grained authenticator filtering in attestation options? (#1688)

I would have thought you could indicate this with:

```
navigator.credentials.get({
  publicKey: {
    challenge: new Uint8Array([/* bytes sent from the server */]),
    authenticatorSelection: {
      "authenticatorAttachment": "platform"
      "userVerification": "preferred"
    }
  }
})
```

Note both the placement of `userVerification` and `authenticatorAttachment` are within `authenticatorSelection`.

With this clarification, is your use case satisfied by the current specifications?

-- 
GitHub Notification of comment by sbweeden
Please view or discuss this issue at https://github.com/w3c/webauthn/issues/1688#issuecomment-1147664864 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Monday, 6 June 2022 16:54:09 UTC