Client for Adobe Connect Webservice API v9.5.4
PHP library to comunicate with the Adobe Connect Web Service.
Installation
The package is available on Packagist. You can install it using Composer
$ composer require brunogasparetto/adobe-connect-client
Usage
<?php
use AdobeConnectClient\Connection\Curl\Connection;
use AdobeConnectClient\Client;
$connection = new Connection('https://hostname.adobeconnect.com');
$client = new Client($connection);
$client->login('username', 'password');
$folderId = 123;
$filter = Filter::instance()
->like('name', 'Test')
->dateAfter('dateBegin', new DateTimeImmutable());
$scos = $client->scoContents($folderId, $filter);