Overview
Last updated
1. Extract RFC 9421 signature headers from request
2. Send headers to verifier service
3. Receive verification result (verified, agent info, or error)
4. Make policy decision in your application// Node.js
req.oba.signed // boolean - request had signature headers
req.oba.result // VerificationResult or null# Python
request.state.oba.signed # bool - request had signature headers
request.state.oba.result # VerificationResult or None