I wanted to create an End meeting callback URL. Included 'meta_endCallbackUrl' key with value being my application callback url in $bbb->server->addMeeting, but it wasn't sent to my BBB server.
I had to hardcode the meta in the create() method of the Meeting class to make it work:
|
$response = $this->client->get('create', [ |
I just added a line in the array like this:
'meta_endCallbackUrl' => 'https://my_domain.xyz/my_callback?meeting_id='.$this->getMeetingID()
Now it's working as expected.
Would be nice if you could fix this issue.
Thanks.