Laravel Wrapper for zoom api ( https://zoom.github.io/api/ )
From the command line, run:
composer require fessnik/zoom
For your Laravel app, open config/app.php
and, within the providers
array, append:
Fessnik\Zoom\ZoomServiceProvider::class
First from the command line, run:
php artisan vendor:publish --provider="Fessnik\Zoom\ZoomServiceProvider"
After that you will see zoom.php
file in config directory, where you add value for api_key and api_secret
$zoom = new Zoom();
$zoom->users->list()
Users
Meetings
If you answered "no" on "Remove this package?" question after scaffolding you can remove
composer remove fessnik/zoom
Open config/app.php
and remove the provider:
Fessnik\Zoom\ZoomServiceProvider::class