Skip to content

Provides a PHP Client to interact with the Adobe Connect's API

License

Notifications You must be signed in to change notification settings

ujamii/adobe-connect

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP Client for Adobe Connect's API (tested with v9)

At the moment, the client not implement methods for all the Adobe Connect's API actions (You're invited to do it :)), instead, we just implement those that we usually use in our system.

Installation using Composer

$ composer require platforg/adobe-connect

Usage

<?php
require __DIR__ . '/vendor/autoload.php';

$config = new AdobeConnect\Config(
    "your-account.adobeconnect.com",
    "username@gmail.com",
    "password"
);

$client = new AdobeConnect\ApiClient($config);

// Call endpoints
$info = $client->commonInfo();
var_dump($info);

// ...
$scos = $client->scoSearch('term...');
var_dump($scos);
// ...

The methods names in the ApiClient class maintain a one-to-one relationship with the AdobeConnect's endpoints (in camelCase instead of hyphen).
Please, see the AdobeConnect\ApiClient for a complete list of endpoints implemented. Also, you can use/see AdobeConnect\ExtraApiClient for some custom methods.

Frameworks integrations (third-party):

Todo:

  • Add unit test.
  • Implement more methods.
  • Add Documentation.

Note: We don't have any relation with Adobe.

About

Provides a PHP Client to interact with the Adobe Connect's API

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%