-
Notifications
You must be signed in to change notification settings - Fork 199
Environment Variables
Ghazi Triki edited this page Oct 18, 2018
·
1 revision
You should have environment variables BBB_SECRET
and BBB_SERVER_BASE_URL
defined in your sever.
*if you are using Laravel you can add it in your .env
The you will be able to call BigBlueButton API of your server. A simple usage example for create meeting looks like:
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();
Getting Started
Configuration
API Calls
-
Administration
-
Monitoring
-
Recording
-
Samples
External Links