You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can startRegister with icloud but verifyRegistrationResponse got error of User verification was required, but user could not be verified
113 | if (requireUserPresence && !flags.up) {
114 | throw new Error('User presence was required, but user was not present');
115 | }
116 | // Enforce user verification if specified
117 | if (requireUserVerification && !flags.uv) {
118 | throw new Error('User verification was required, but user could not be verified');
import{startRegistration}from'@simplewebauthn/browser'constoption=(awaitpasskeyRegisterOptions())// from api resp of step1letcredential=awaitstartRegistration({optionsJSON: option,useAutoRegister: false,})awaitpasskeyRegisterVerify(credential)// this api see step3
Describe the issue
I can startRegister with icloud but verifyRegistrationResponse got error of
User verification was required, but user could not be verified
Reproduction Steps
Just https://simplewebauthn.dev/docs/packages/browser#startregistration steps
Expected behavior
can work
Code Samples + WebAuthn Options and Responses
1. api gen option
eg
2. vue web
3. api verify
and the req.body eg
Dependencies
SimpleWebAuthn Libraries
Additional context
The text was updated successfully, but these errors were encountered: