Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 810 Bytes

readme.md

File metadata and controls

28 lines (25 loc) · 810 Bytes

Adobe Connect 8 API client

Overview

Simply PHP-client.

Requirements

###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