Arach Tchoupani

Some links and some thoughts

« Back to blog

What webhooks are and why you should care « Timothy Fitz

Webhooks are user-defined HTTP callbacks. Here’s a common example: You go to github. There’s a textbox for their code post webhook. You drop in a URL. Now when you post your code to github, github will HTTP POST to your chosen URL with details about the code post. There is no simpler way to allow open ended integration with arbitrary web services. 

Interesting! Very interesting!