diff options
Diffstat (limited to 'example/index.js')
-rw-r--r-- | example/index.js | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/example/index.js b/example/index.js index 3a58719..3b143b3 100644 --- a/example/index.js +++ b/example/index.js @@ -72,7 +72,13 @@ app.get('/generate-attestation-options', (req, res) => { app.post('/verify-attestation', (req, res) => { const { body } = req; - const verification = verifyAttestationResponse(body, `https://${origin}`); + let verification; + try { + verification = verifyAttestationResponse(body, `https://${origin}`); + } catch (error) { + console.error(error); + return res.status(400).send({ error: error.message }); + } const { verified, authenticatorInfo } = verification; @@ -120,7 +126,13 @@ app.post('/verify-assertion', (req, res) => { } }); - const verification = verifyAssertionResponse(body, `https://${origin}`, dbAuthenticator); + let verification; + try { + verification = verifyAssertionResponse(body, `https://${origin}`, dbAuthenticator); + } catch (error) { + console.error(error); + return res.status(400).send({ error: error.message }); + } const { verified, authenticatorInfo } = verification; |