PHP code example of jrevillaa / obs-api-zoom
1. Go to this page and download the library: Download jrevillaa/obs-api-zoom library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jrevillaa / obs-api-zoom example snippets
// Import the class namespaces first, before using it directly
use Obs\ObsClient as ObsClient;
use Obs\ObsException as ObsException;
$ak = '*** Provide your Access Key ***';
$sk = '*** Provide your Secret Key ***';
$endpoint = 'https://your-endpoint:443';
$obsClient = ObsClient::factory(array (
'key' => $ak,
'secret' => $sk,
'endpoint' => $endpoint,
));