I'm using a php code right from bigbluebutton php API documentation, but it doesnt work. Here is the code:
use BigBlueButton/BigBlueButton;
$bbb = new BigBlueButton();
$createMeetingParams = new CreateMeetingParameters('bbb-meeting-uid-65', 'BigBlueButton API Meeting');
$response = $bbb->createMeeting($createMeetingParams);
echo "Created Meeting with ID: " . $response->getMeetingId();
I get this error from php logs:
syntax error, unexpected '/', expecting ',' or ';' in /var/www/html/bbbapi/index.php on line 1
I'm running it using php 5.6 on ubuntu 16.4 i've tried a slash and a backslash but it just wont work i'm very surprised by this, since i've used use by the past.
Anyone has an idea ?