Dive into the fascinating world of webhooks! Discover how these user-defined callbacks can simplify server communication in projects from e-commerce to media processing. Learn about best practices for architecture, message history, and securing your webhooks. The hosts share handy tools like Ngrok for easy URL management and tips on testing your webhooks effectively. Plus, explore low-code solutions to enhance workflow automation and streamline your development process!
21:37
forum Ask episode
web_stories AI Snips
view_agenda Chapters
auto_awesome Transcript
info_circle Episode notes
insights INSIGHT
Webhooks Defined
Webhooks are user-defined HTTP callbacks triggered by events.
They send data to another service when something specific happens, like a purchase or chargeback.
question_answer ANECDOTE
Stripe Webhooks for Chargebacks
Wes uses webhooks with Stripe to manage chargebacks for online courses.
When a chargeback occurs, Stripe pings his server, allowing him to lock the fraudulent account.
question_answer ANECDOTE
Video Platform Webhooks
Scott uses webhooks for Level Up Tutorials' video platform.
After an upload, the platform processes the video and sends a webhook notification when it's ready.
Get the Snipd Podcast app to discover more snips from this episode
In this Hasty Treat, Scott and Wes talk about webhooks — one of those concepts that seems a lot scarier than it actually is.
Linode - Sponsor
Whether you’re working on a personal project or managing enterprise infrastructure, you deserve simple, affordable, and accessible cloud computing solutions that allow you to take your project to the next level. Simplify your cloud infrastructure with Linode’s Linux virtual machines and develop, deploy, and scale your modern applications faster and easier. Get started on Linode today with a $100 in free credit for listeners of Syntax. You can find all the details at linode.com/syntax. Linode has 11 global data centers and provides 24/7/365 human support with no tiers or hand-offs regardless of your plan size. In addition to shared and dedicated compute instances, you can use your $100 in credit on S3-compatible object storage, Managed Kubernetes, and more. Visit linode.com/syntax and click on the “Create Free Account” button to get started.
LogRocket - Sponsor
LogRocket lets you replay what users do on your site, helping you reproduce bugs and fix issues faster. It’s an exception tracker, a session re-player and a performance monitor. Get 14 days free at logrocket.com/syntax.
Show Notes
03:42 - What are webhooks?
User-defined HTTP callbacks
When something happens, ping this URL with this data
Examples:
When something sells, ping this URL
When someone reverses a charge, lock their account
Trigger a build of the website when the content changes
Then someone buys a shirt, generate a shipping label and save it to the DB
07:57 - Sending End
Can be a great way to hook two services together
09:13 - Receiving End
Often you will be the one that accepts the webhook ping
In this case, you set up an endpoint
11:00 - Payloads
Almost all will send a JSON body that you parse out
The method send is variable
11:51 - Auth
On the receiving end of a webhook, you often get a token which you can then ping the service with. It will tell you if that request was legit or not.
On the sending end, you can often set up headers with auth - same with the method