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 was not too familiar with how server and client interacted, but while building up the "attestation" side of the server to connect with your front end, I kept getting an error code back of "type" missing from the response object. I patched the code with a few lines similar to this:
this.type = coerceToBase64Url("public-key", "type");
The server now responds properly, I can't say this is valid for all aspects of the FIDO2 standard. I am not too familiar with the fine detail yet (one of the reasons I am building the test server).
Hi,
I am working on building a test system, both a FIDO2 server and front end and leveraged your code. I am using this as the FIDO backend:
https://github.com/web-auth/webauthn-framework
I was not too familiar with how server and client interacted, but while building up the "attestation" side of the server to connect with your front end, I kept getting an error code back of "type" missing from the response object. I patched the code with a few lines similar to this:
this.type = coerceToBase64Url("public-key", "type");
The server now responds properly, I can't say this is valid for all aspects of the FIDO2 standard. I am not too familiar with the fine detail yet (one of the reasons I am building the test server).
Here is the link to debugging on the server side that has more information:
web-auth/webauthn-framework#121
The text was updated successfully, but these errors were encountered: