neverstew avatar
neverstew
safeAssertBearerToken
Script
safeAssertBearerToken A safe version of assertBearerToken that handles errors and presents them as a property on the returned object instead. Example const handler = (req, res) => { const authorization = req.get('authorization'); const { error, data: token } = @neverstew.safeAssertBearerToken(@me.secrets.superSecret, authorization); if (error) { res.status(401).send("Unauthorized"); return; } res.json(token); }
0
neverstew avatar
neverstew
testAssertBearerTokenFailureExpress
Script
An interactive, runnable TypeScript val by neverstew
0
1
Next
Updated: October 23, 2023