bigbluebutton api for laravel

Submitted by joisarjignesh - 3 years ago

Package that provides easily communicate between bigbluebutton server and laravel framework

// install
composer require joisarjignesh/bigbluebutton

//vendor publish
php artisan vendor:publish --tag=bigbluebutton-config

//Define in config/bigbluebutton.php file
BBB_SECURITY_SALT=bbb_secret_key   
BBB_SERVER_BASE_URL=https://example.com/bigbluebutton/

//create meeting
\Bigbluebutton::create([
    'meetingID' => 'tamku',
    'meetingName' => 'test meeting',
    'attendeePW' => 'attendee',
    'moderatorPW' => 'moderator'
]); 

//join
return response()->to(
 Bigbluebutton::join([
    'meetingID' => 'tamku',
    'userName' => 'disa',
    'password' => 'attendee' //which user role want to join set password here
 ])
);

//browse more https://github.com/joisarjignesh/bigbluebutton