|
|
|
|
|
by strken
932 days ago
|
|
I'm not totally anti-webhook or the person you replied to, but I'd prefer at-most-once delivery via something that establishes a reusable connection (grpc or even websockets?) and backed by an events endpoint like Stripe's where the client can read everything that would have been sent. That way the client can replay all the events at leisure and retries aren't the server's responsibility. |
|
Isn't that basically a description of SSE (https://en.m.wikipedia.org/wiki/Server-sent_events)?