79782472

Date: 2025-10-04 12:20:51
Score: 1
Natty:
Report link

A webhook is a way for your backend to get notify when an operation is completed. you provide the webhook API with a webhook URL , and then the API sends the data to that URL once the operation happend.

the frontend doesnt have direct way to receive these notifications, because webhooks are HTTP requests sent to a server endpoint. If you want the client to know about the change in real time without pooling your backend must forward the update using techniques like WebSockets, Server-Sent Events (SSE)

Reasons:
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Rayan Allali