An open API service indexing awesome lists of open source software.

https://github.com/hamoda-dev/php-zoomer

Simple Zoom API library
https://github.com/hamoda-dev/php-zoomer

php zoom zoom-api

Last synced: 28 days ago
JSON representation

Simple Zoom API library

Awesome Lists containing this project

README

          

# PHP-Zoomer

PHP-Zoomer is a simple Zoom API library for using to work with Webiners and it give you OAuth implemntation and Server-to-Server OAuth.

## Installation
via composer run
```
composer require hamoda-dev/php-zoomer
```

## How to Use

### Initialize
Initialize the library with the required credentials
```php
$zoomer = new Zoomer('clientID', 'clientSecret', 'credenialPath');
```

### Autheriztion
#### OAuth via URL
1 - Add the redirect URI
```php
$zoomer->setRedirectUri('redirectURI');
```
2 - Get OAuth URL
```php
$zoomer->getOAuthUrl();
```
#### Server to Server OAuth
1 - Add the Account ID
```php

```