acrossoffwest/zoom-sdk

zoom API client for Laravel

0.0.3 2020-05-26 21:54 UTC

This package is auto-updated.

Last update: 2024-03-27 06:51:38 UTC


README

68747470733a2f2f6c61726176656c2e636f6d2f6173736574732f696d672f636f6d706f6e656e74732f6c6f676f2d6c61726176656c2e737667

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);