We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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') : $this->getRaw, ]; return $this->buildHTTPQuery($queries); }
You must add the eventId filter like this else the hook return all events, even if you set eventid filter on create parameter:
public function getHTTPQuery(): string { $queries = [ 'callbackURL' => $this->callbackUrl, 'meetingID' => $this->meetingId, 'eventID' => $this->eventId, 'getRaw' => !is_null($this->getRaw) ? ($this->getRaw ? 'true' : 'false') : $this->getRaw, ]; return $this->buildHTTPQuery($queries); }
The text was updated successfully, but these errors were encountered:
Select Event type on hook create to return only specifics events in h…
29896b3
…ook, not all. Issue bigbluebutton#258 according to BBB doc : https://docs.bigbluebutton.org/development/webhooks/#hookscreate
No branches or pull requests
In file src/Parameters/HooksCreateParameters.php
in method
You must add the eventId filter like this else the hook return all events, even if you set eventid filter on create parameter:
The text was updated successfully, but these errors were encountered: