bigbluebutton-api-php
bigbluebutton-api-php copied to clipboard
Offical @BigBlueButton PHP API
Steps to reproduce: ``` ./vendor/bin/phpunit tests --display-all-issues ``` We get ``` There was 1 risky test: 1) BigBlueButton\Parameters\CreateMeetingParametersTest::testGetPresentationsAsXMLWithUrlAndFilename This test did not perform any assertions /****/tests/Parameters/CreateMeetingParametersTest.php:139 ``` and we get...
For newer versions of phpunit, data provider methods should be public. Also, the value keys in data provider records should match parameter names, OR they should simply be parameter lists...
I don't know why, but I get a failure in BigBlueButtonTest::testSendChatMessage() ``` 1) BigBlueButton\BigBlueButtonTest::testSendChatMessage BigBlueButton\Exceptions\BadResponseException: Bad response, HTTP code: 404, url: https://*************/bigbluebutton/api/sendChatMessage?*********** /***/src/BigBlueButton.php:609 /***/src/BigBlueButton.php:627 /***/src/BigBlueButton.php:220 /***/tests/BigBlueButtonTest.php:366 ``` (line numbers might...
@GhaziTriki Some observations, please correct me if I am wrong: In `BigBlueButton::sendRequest()` we are storing response cookies in a tmpfile. We also check for _previous_ contents of that tmpfile, and...
Hello @GhaziTriki, I was trying to run the tests locally, but obviously I need to set up a BBB instance. Do you have any local docker-compose setup which already has...
In [v3.0](https://docs.bigbluebutton.org/development/webhooks/#hookslist) type is`string`. Example from [docs ](https://docs.bigbluebutton.org/development/webhooks/#hookslist): ```xml SUCCESS 12345678-1234-5678-1234-567812345678 > false false 01234567-89ab-cdef-0123-456789abcdef false false ``` in [v2](https://docs.bigbluebutton.org/2.7/development/webhooks/#hookslist) is `int`: ```xml SUCCESS 1 > false false 2 false...
It would be nice if property `meetingID ` was added to the `Hook` class. ```xml SUCCESS 12345678-1234-5678-1234-567812345678 > false false 01234567-89ab-cdef-0123-456789abcdef false false ```
- Removed CURLOPT_SSL_VERIFYPEER in order to allow customization through options passed to function