Understanding Webhooks: A Guide with Practical Examples

Mohasin Hossain
3 min readJan 28, 2024

Introduction:

Webhooks play a crucial role in modern web development by enabling real-time communication between applications. They provide a way for one system to notify another about events or updates, facilitating seamless integration and automation. In this article, we’ll explore the concept of webhooks, how they work, and provide practical examples to demonstrate their usage.

What are Webhooks?

Webhooks are user-defined HTTP callbacks triggered by specific events. Instead of regularly polling for updates, applications can register a webhook URL with a provider, and the provider will send HTTP requests to that URL whenever a relevant event occurs. This asynchronous approach allows for instant updates and reduces the need for continuous polling.

How Webhooks Work:

Registration:

  • An application subscribes to events by providing a callback URL (webhook URL) to a provider.
  • Common providers include GitHub, Stripe, and various APIs.

Event Occurrence:

  • When a predefined event occurs, such as a new commit in a repository or a payment received, the provider sends an HTTP POST request to the registered webhook URL.

Payload Delivery:

  • The HTTP POST request includes a payload (data) containing information about the event.
  • The receiving application processes the payload and takes relevant actions based on the event.

Practical Examples:

Example 1: GitHub Webhook for Push Events

Let’s set up a simple webhook for GitHub’s push events. This example assumes you have a web server accessible from the internet.

Create a Webhook on GitHub:

  • Go to your repository on GitHub.
  • Navigate to Settings > Webhooks > Add webhook.
  • Set the Payload URL to your server’s endpoint (http://your-server.com/github-webhook).
  • Select “Just the push event” for simplicity.
  • Add the webhook.

Create a Controller for the Webhook:

php artisan make:controller GitHubWebhookController
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class GitHubWebhookController extends Controller
{
public function handle(Request $request)
{
$payload = $request->all();
// Implement your logic here based on the event
info('Received GitHub push event: ' . print_r($payload, true));
return response('Webhook received successfully', 200);
}
}
use App\Http\Controllers\GitHubWebhookController;

Route::post('/github-webhook', [GitHubWebhookController::class, 'handle']);

Example 2: Stripe Webhook for Payment Events

Create a Webhook on Stripe:

  • Log in to your Stripe account.
  • Navigate to Developers > Webhooks > Add endpoint.
  • Set the endpoint URL to your server’s endpoint (http://your-server.com/stripe-webhook).
  • Select “payment_intent.succeeded” as the event type.
  • Add the webhook.

Create a Controller for the Webhook:

php artisan make:controller StripeWebhookController
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Stripe\Exception\SignatureVerificationException;
use Stripe\Webhook;

class StripeWebhookController extends Controller
{
public function handle(Request $request)
{
$payload = $request->getContent();
$sigHeader = $request->header('Stripe-Signature');
$endpointSecret = config('services.stripe.webhook_secret');

try {
$event = Webhook::constructEvent($payload, $sigHeader, $endpointSecret);
} catch (SignatureVerificationException $e) {
return response('Invalid webhook signature', 400);
}

// Handle the event
info('Received Stripe payment event: ' . print_r($event->data, true));
return response('Webhook received successfully', 200);
}
}
use App\Http\Controllers\StripeWebhookController;

Route::post('/stripe-webhook', [StripeWebhookController::class, 'handle']);

Ensure to set the correct Stripe webhook secret in your Laravel configuration (config/services.php).

Conclusion:

Webhooks provide a powerful mechanism for building real-time integrations between different systems. By understanding the workflow and implementing simple examples, developers can leverage webhooks to enhance automation, receive instant updates, and create more dynamic and responsive applications.

Hope you found this helpful!

--

--

Mohasin Hossain

Senior Software Engineer | Mentor @ADPList | Backend focused | PHP, JavaScript, Laravel, Vue.js, Nuxt.js, MySQL, TDD, CI/CD, Docker, Linux