bigbluebutton-api-php
bigbluebutton-api-php copied to clipboard
Offical @BigBlueButton PHP API
Hello, I have installed bbb 2.7 and use the following code: ================================================ //----Llamada a la lib BBB (vc) require_once './func/vendor/autoload.php'; use BigBlueButton\BigBlueButton; use BigBlueButton\Parameters\CreateMeetingParameters; use BigBlueButton\Parameters\JoinMeetingParameters; use BigBlueButton\Parameters\GetMeetingInfoParameters; use BigBlueButton\Parameters\EndMeetingParameters;...
Select Event type on hook create to return only specifics events in hook, not all. According to BBB doc : https://docs.bigbluebutton.org/development/webhooks/#hookscreate. #258
The standard flow for letting a user join a meeting is to create the meeting, generate a join URL and redirecting the user to that join URL. The join response...
I think, default expiry time for joining links from server configuration is 10 minutes. Can I change it using this repo's coding? If yes, Can you please list down what...
I am successfully able to create join link for moderator and attendee, but I want to create future join links. Do we have any option in API to pass start...
In file **src/Parameters/HooksCreateParameters.php** in method ``` public function getHTTPQuery(): string { $queries = [ 'callbackURL' => $this->callbackUrl, 'meetingID' => $this->meetingId, 'getRaw' => !is_null($this->getRaw) ? ($this->getRaw ? 'true' : 'false') :...
See - #267 This probably won't work. Just a preview prototype to see the general idea. I would like to split the class, so that the version with a http...
These are all I could find. I like to do this kind of change in a separate PR, to reduce noise in the main PR.
For now I am proposing a version that does not break BC.
Currently the `BigBlueButton::sendRequest()` is hard-coded to use `curl_*()` methods. We are working on an integration in Drupal, where we would like to use the (Guzzle) http client service from the...