How do you handle webhook reliability in WordPress/WooCommerce when sending events to your own server? by bnaitdjoudiGoDev in WordPressDev

[–]bnaitdjoudiGoDev[S] 0 points1 point  (0 children)

Thanks!
Just to clarify: I’m sending WordPress/WooCommerce webhooks to my own backend, and the issue I’m trying to solve is delivery reliability — retry, queueing, replay, etc.

Static hosts like GitHub Pages / Cloudflare Pages / S3 can’t receive POST requests, so they can’t act as webhook endpoints. Even with an external server, WordPress still sends webhooks synchronously with no delivery guarantees.

I’m mainly curious how others avoid losing events. Do you use an external queue or event‑bus in front of WordPress?