Webhooks
#1219
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Webhooks are a neat way to get updates by push to your web application.
The wikipedia article is pretty dry, so I will quote a blog post by Zapier:
As the next release (0.6) is going to support metadata versioning and an eventing framework, now is a good time to support
webhooks for event changes on entities.
The general plan is to have an API or configuration where the admin can register his URL to recieve the webhooks, and if a URL is configured then have an Event Handler (which is invoked when ever there is a change to an entity) that publishes those events with a POST request.
Once this is done we should consider having a retry mechanism for requests that failed and support basic authentication.
Thoughts?
Beta Was this translation helpful? Give feedback.
All reactions