PHPackages                             nicholasmt/zoom\_webhook - 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. [API Development](/categories/api)
4. /
5. nicholasmt/zoom\_webhook

ActiveLibrary[API Development](/categories/api)

nicholasmt/zoom\_webhook
========================

a laravel package for zoom webhook end point verification and validation

096PHP

Since Jun 6Pushed 2y ago1 watchersCompare

[ Source](https://github.com/Nicholasmt/zoom_webhook_library)[ Packagist](https://packagist.org/packages/nicholasmt/zoom_webhook)[ RSS](/packages/nicholasmt-zoom-webhook/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

[![](https://camo.githubusercontent.com/4842eb48bba5e6da52b9c0877bb336b5b2cfe33c16803ecd427fce920d2e754a/68747470733a2f2f7374322e7a6f6f6d2e75732f7374617469632f362e332e31323631332f696d6167652f6e65772f746f704e61762f5a6f6f6d5f6c6f676f2e737667)](https://camo.githubusercontent.com/4842eb48bba5e6da52b9c0877bb336b5b2cfe33c16803ecd427fce920d2e754a/68747470733a2f2f7374322e7a6f6f6d2e75732f7374617469632f362e332e31323631332f696d6167652f6e65772f746f704e61762f5a6f6f6d5f6c6f676f2e737667)
=============================================================================================================================================================================================================================================================================================================================================================================================================================================================================================

[](#)

Laravel Package Library to verify and validate zoom webhook endpoint url
========================================================================

[](#laravel-package-library-to-verify-and-validate-zoom-webhook-endpoint-url)

To get started Run
==================

[](#to-get-started-run)

```
composer require nicholasmt/zoom_webhook

```

Note: if You encounter this or any other error which means you are using the old version of those packages

```
Your requirements could not be resolved to an installable set of packages.
```

To Resolve simply run

```
 composer update

```

After successfull composer update then install the package again with `console composer require nicholasmt/zoom_webhook `

Note: if you encounter any error based on poor network during update,

just backup the vender file, delete and run composer update again with `console composer update `

Configure .env file with below

```
ZOOM_SECRET_TOKEN="your zoom secret token"
```

Create a controller and require package using

```
use Nicholasmt\ZoomWebhook\Zoomwebhook;
```

Remember to excetp the route from csrf token verification under App/Http/middleware/VerifyCsrfToken.php

```
