PHPackages                             abdallamohammed/laravel-zoom-webhooks - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. abdallamohammed/laravel-zoom-webhooks

ActiveLibrary

abdallamohammed/laravel-zoom-webhooks
=====================================

Handle Zoom.us webhooks in a Laravel application

012PHP

Since Dec 21Pushed 3y agoCompare

[ Source](https://github.com/AbdallaMohammed/laravel-zoom-webhooks)[ Packagist](https://packagist.org/packages/abdallamohammed/laravel-zoom-webhooks)[ RSS](/packages/abdallamohammed-laravel-zoom-webhooks/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Handle Zoom Webhooks in a Laravel application
=============================================

[](#handle-zoom-webhooks-in-a-laravel-application)

[![https://github.com/binary-cats/laravel-zoom-webhooks/actions](https://github.com/binary-cats/laravel-zoom-webhooks/workflows/Laravel/badge.svg)](https://github.com/binary-cats/laravel-zoom-webhooks/workflows/Laravel/badge.svg)[![https://github.styleci.io/repos/](https://camo.githubusercontent.com/4e949fb874ce36bd950a9b39ea0bc7c92da978bfdaecddd8541bafdb40d1f719/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3333343534373232372f736869656c64)](https://camo.githubusercontent.com/4e949fb874ce36bd950a9b39ea0bc7c92da978bfdaecddd8541bafdb40d1f719/68747470733a2f2f6769746875622e7374796c6563692e696f2f7265706f732f3333343534373232372f736869656c64)[![https://scrutinizer-ci.com/g/binary-cats/laravel-zoom-webhooks/](https://camo.githubusercontent.com/ba17535547592125a1319f7ea1150f11117100c21cbf1052ae98766f88f8f486/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f62696e6172792d636174732f6c61726176656c2d7a6f6f6d2d776562686f6f6b732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://camo.githubusercontent.com/ba17535547592125a1319f7ea1150f11117100c21cbf1052ae98766f88f8f486/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f62696e6172792d636174732f6c61726176656c2d7a6f6f6d2d776562686f6f6b732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)

[Zoom](https://zoom.us) can notify your application of various events using webhooks. This package can help you handle those webhooks. Out of the box it will verify Zoom webhook signature of incoming requests. All valid calls will be logged to the database. You can easily define jobs or events that should be dispatched when specific events hit your app.

This package will not handle what should be done *after* the webhook request has been validated and the right job or event is called. You should still code up any work (eg. what should happen) yourself. For more, read on.

[![](https://repository-images.githubusercontent.com/334547227/82dc7c80-6330-11eb-8640-34b9611ab14e)](https://repository-images.githubusercontent.com/334547227/82dc7c80-6330-11eb-8640-34b9611ab14e)

Before using this package we highly recommend reading [the entire documentation on webhooks over at Zoom](https://marketplace.zoom.us/docs/api-reference/webhook-reference).

This package is an adaptation of absolutely amazing [spatie/laravel-stripe-webhooks](https://github.com/spatie/laravel-stripe-webhooks)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require binary-cats/laravel-zoom-webhooks
```

The service provider will automatically register itself.

You must publish the config file with:

```
php artisan vendor:publish --provider="BinaryCats\ZoomWebhooks\ZoomWebhooksServiceProvider" --tag="config"
```

This is the contents of the config file that will be published at `config/zoom-webhooks.php`:

```
return [

    /*
     * Zoom will sign each webhook using a verification token. You can find the secret used
     * in the  page of your Marketplace app: .
     */
    'signing_secret' => env('ZOOM_WEBHOOK_SECRET'),

    /*
     * You can define the job that should be run when a certain webhook hits your application
     * here. The key is the name of the Zoom event type with the `.` replaced by a `_`.
     *
     * You can find a list of Zoom webhook types here:
     * https://marketplace.zoom.us/docs/api-reference/webhook-reference#events.
     */
    'jobs' => [
        // 'meeting_started' => \BinaryCats\ZoomWebhooks\Jobs\HandleMeetingStarted::class,
    ],

    /*
     * The classname of the model to be used. The class should equal or extend
     * Spatie\WebhookClient\Models\WebhookCall
     */
    'model' => \Spatie\WebhookClient\Models\WebhookCall::class,

    /*
     * The classname of the model to be used. The class should equal or extend
     * BinaryCats\ZoomWebhooks\ProcessZoomWebhookJob
     */
    'process_webhook_job' => \BinaryCats\ZoomWebhooks\ProcessZoomWebhookJob::class,
];
```

In the `signing_secret` key of the config file you should add a valid webhook secret. You can find the secret used at HTTP webhook signing key.

**You can skip migrating is you have already installed `Spatie\WebhookClient`**

Next, you must publish the migration with:

```
php artisan vendor:publish --provider="Spatie\WebhookClient\WebhookClientServiceProvider" --tag="migrations"
```

After migration has been published you can create the `webhook_calls` table by running the migrations:

```
php artisan migrate
```

### Routing

[](#routing)

Finally, take care of the routing: At [the Markerplace dashboard](https://marketplace.zoom.us/user/build) you must configure at what url Zoom webhooks should hit your app. In the routes file of your app you must pass that route to `Route::zoomWebhooks()`:

I *personally* like to group functionality by domain, so I would suggest `webhooks/zoom` (especially if you plan to have more webhooks), but it is your app, and it is up to you.

```
# routes\web.php
Route::zoomWebhooks('webhooks/zoom');
```

Behind the scenes this will register a `POST` route to a controller provided by this package. Because Zoom has no way of getting a csrf-token, you must add that route to the `except` array of the `VerifyCsrfToken` middleware:

```
protected $except = [
    'webhooks/zoom',
];
```

### Alternative middleware configuration

[](#alternative-middleware-configuration)

When you have multiple webhooks for various services, defined with a simialr packages, like [Stripe Webhooks](https://github.com/spatie/laravel-stripe-webhooks) and [Mailgun Webhooks](https://github.com/binary-cats/laravel-mailgun-webhooks) it may be easier to define `VerifyCsrfToken` middleware as:

```
protected $except = [
    'webhooks/*',
];
```

Usage
-----

[](#usage)

Zoom will send out webhooks for several event types. You can find the [full list of events types](https://marketplace.zoom.us/docs/api-reference/webhook-reference#events) in Zoom documentation.

Zoom will sign all requests hitting the webhook url of your app. This package will automatically verify if the signature is valid. If it is not, the request was probably not sent by Zoom.

Unless something goes terribly wrong, this package will always respond with a `200` to webhook requests. Sending a `200` will prevent Zoom from resending the same event over and over again. All webhook requests with a valid signature will be logged in the `webhook_calls` table. The table has a `payload` column where the entire payload of the incoming webhook is saved.

If the signature is not valid, the request will not be logged in the `webhook_calls` table but a `BinaryCats\ZoomWebhooks\Exceptions\WebhookFailed` exception will be thrown. If something goes wrong during the webhook request the thrown exception will be saved in the `exception` column. In that case the controller will send a `500` instead of `200`.

There are two ways this package enables you to handle webhook requests: you can opt to queue a job or listen to the events the package will fire.

### Handling webhook requests using jobs

[](#handling-webhook-requests-using-jobs)

If you want to do something when a specific event type comes in you can define a job that does the work. Here's an example of such a job:

```
