...
| Expand | ||||||
|---|---|---|---|---|---|---|
| ||||||
|
Pre-
...
Register FIDO2 Token
First, we can the DualShield API token/preRegister to pre-register a FIDO2 token
...
| Code Block | ||
|---|---|---|
| ||
create(this.credentialCreateOptions).then((response: any) => {
let token: {publicKeyCredentialJson: string, pin?: string, registerRequestId: string} = {
publicKeyCredentialJson: JSON.stringify(response),
registerRequestId: this.registerRequestId,
}; |
...
Register FIDO2 Token to a user
Finally, we call the DualShield API token/register to register the FIDO2 token
...