Simply PHP-client.
###Usage All methods are throwable and you should wrap API-calls to try-catch blocks
$client = new AdobeConnectClient();
$acc->createUser('[email protected]', 'p4s$w0rD', 'Firstname', 'Lastname');
$acc->getUserByEmail('[email protected]', true);
$folder_id = $acc->createFolder('test folder', 'api_test_folder');
$meeting_id = $acc->createMeeting(
$folder_id,
'test meeting',
'2012-11-04T09:00',
'2012-11-04T11:00',
'api_test'
);
$acc->inviteUserToMeeting($meeting_id, '[email protected]');
###Contacts