LaravelPackages.net
Acme Inc.
Toggle sidebar
acrossoffwest/zoom-sdk

zoom API client for Laravel

25
0
0.0.3
About acrossoffwest/zoom-sdk

acrossoffwest/zoom-sdk is a Laravel package for zoom api client for laravel. It currently has 0 GitHub stars and 25 downloads on Packagist (latest version 0.0.3). Install it with composer require acrossoffwest/zoom-sdk. Discover more Laravel packages by acrossoffwest or browse all Laravel packages to compare alternatives.

Last updated

Fork of Fessnik/zoom

Laravel Wrapper for zoom api ( https://zoom.github.io/api/ )

Installation

Step 1: Composer

From the command line, run:

composer require acrossoffwest/zoom-sdk

Step 2: Service Provider (For Laravel/Lumen < 5.5)

For your Laravel app, open config/app.php and, within the providers array, append:

Acrossoffwest\Zoom\ZoomServiceProvider::class

For your Lumen app, open bootstrap/app.php and, add this line:

$app->register(Acrossoffwest\Zoom\ZoomServiceProvider::class);

Step 3: Publish Configs

First from the command line, run:

php artisan vendor:publish --provider="Acrossoffwest\Zoom\ZoomServiceProvider"

After that you will see zoom.php file in config directory, where you add value for api_key and api_secret

Usage

$zoom = new Zoom();

$zoom->users->list()

RESOURCES

Users
Meetings

Step 4: Remove the package

If you answered "no" on "Remove this package?" question after scaffolding you can remove

composer remove acrossoffwest/zoom-sdk
Laravel < 5.5

Open config/app.php and remove the provider:

Acrossoffwest\Zoom\ZoomServiceProvider::class
Lumen < 5.5

Open bootstrap/app.php and remove the provider:

$app->register(Acrossoffwest\Zoom\ZoomServiceProvider::class);

Star History Chart