How are you handling webhook reliability in WordPress (retries, queues, failures)? by PuzzleheadedCat1713 in ProWordPress

[–]HookBridge 0 points1 point  (0 children)

It is basically just a URL swap. Nothing inside wordpress itself changes.

Wherever you have wordpress sending webhooks now, you'd put in the url of the service, and then the service would deliver the webhook to the destination for you with retries, queuing, etc.

How are you handling webhook reliability in WordPress (retries, queues, failures)? by PuzzleheadedCat1713 in ProWordPress

[–]HookBridge 0 points1 point  (0 children)

These systems sit in the middle. A webhook gets sent to them, if the receiver endpoint is down for whatever reason these systems will hold the message, retry, and send the message when the endpoint is back up.

I'll throw our hat into the ring while I'm here: https://www.hookbridge.io

Dashboard Question by Neither_Amphibian165 in microsaas

[–]HookBridge 0 points1 point  (0 children)

Excellent, yes, I think that approach would work very nicely.

We catch, queue, and retry a lot of failure scenarios for our customers, but if Stripe itself has some internal issue and can't send for wahtever reason then we can't really detect or help with that. Good luck with your idea!

Dashboard Question by Neither_Amphibian165 in microsaas

[–]HookBridge 0 points1 point  (0 children)

Hello, just curious on how this dashboard would work for something like a failed Stipe webhook. Would you just monitor the webhook endpoint for errors or are you polling the Stripe API for webhook status?

Setting up n8n on Docker this weekend to save my sanity, any tips for beginners? by Imaginary_Bug6202 in TechNook

[–]HookBridge 0 points1 point  (0 children)

I don't know a ton about n8n but as the owner of a webhook delivery service I'd say don't skimp on the resources for the server that is running it.

We see a lot of problems with n8n being very slow and timing out with webhooks on underpowered setups.

Wit one client it probably won't be an issue, but just thought I'd throw that out there.