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
- Host: GitHub
- URL: https://github.com/hamoda-dev/php-zoomer
- Owner: hamoda-dev
- License: mit
- Created: 2022-08-22T06:06:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-16T05:44:21.000Z (over 3 years ago)
- Last Synced: 2025-01-23T20:17:42.864Z (about 1 year ago)
- Topics: php, zoom, zoom-api
- Language: PHP
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```