We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
BBB_SECRET
BBB_SERVER_BASE_URL
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