Webhook-Aware Inspection: Signature Validation, Search, and Diffs
The current detail pane shows Body, Headers, Query, and Raw tabs in request-detail.tsx line 145. That’s useful, but webhook debugging often fails on subtler questions:
- Did the provider sign this correctly?
- What changed between the working and failing payload?
- Which event was
checkout.session.completed?
Add:
- Provider signature validators for:
- Stripe
- GitHub
- Shopify
- Slack
- Twilio
- Request search/filter by:
- Method
- Path
- Header
- JSON field
- Body text
- Compare two requests and highlight payload/header differences.
- Extract common event identity fields into the request list.
Why: Hookdump explicitly highlights signature validation, and Hookdeck positions observability, routing/filtering, and replay as core webhook infrastructure. This keeps webhooks.lol focused on being a sharp inspector instead of becoming a broad automation product.
Webhook-Aware Inspection: Signature Validation, Search, and Diffs
The current detail pane shows Body, Headers, Query, and Raw tabs in
request-detail.tsxline 145. That’s useful, but webhook debugging often fails on subtler questions:checkout.session.completed?Add:
Why: Hookdump explicitly highlights signature validation, and Hookdeck positions observability, routing/filtering, and replay as core webhook infrastructure. This keeps
webhooks.lolfocused on being a sharp inspector instead of becoming a broad automation product.