You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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.
The text was updated successfully, but these errors were encountered:
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 theMeeting
class to make it work:php-bigbluebutton/src/BigBlueButton/Member/Meeting.php
Line 1193 in fe39dcc
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.
The text was updated successfully, but these errors were encountered: