PHP code example of platforg / adobe-connect
1. Go to this page and download the library: Download platforg/adobe-connect 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/ */
platforg / adobe-connect example snippets
fig = new AdobeConnect\Config(
"your-account.adobeconnect.com",
"[email protected]",
"password"
);
$client = new AdobeConnect\ApiClient($config);
// Call endpoints
$info = $client->commonInfo();
var_dump($info);
// ...
$scos = $client->scoSearch('term...');
var_dump($scos);
// ...