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
This is an API Proposal for the list broadcast API call.
The platform allows you to get a list of all broadcasts. See docs.
We propose to add a new method for getting all broadcast information in a session.
listBroadcasts()
// Get list of broadcasts $broadcastList = $opentok->listBroadcasts(); $broadcastList->totalCount(); // total count
// Get list of broadcasts by sessionId $broadcastList = $opentok->listBroadcasts($sessionId); $broadcastList->totalCount(); // total count
You can also use offset and count when retrieving the broadcasts list:
offset
count
$broadcastList = $opentok->listBroadcasts($offset=0, $count=null);
The text was updated successfully, but these errors were encountered:
Merged
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This is an API Proposal for the list broadcast API call.
List Broadcasts
The platform allows you to get a list of all broadcasts. See docs.
We propose to add a new method for getting all broadcast information in a session.
listBroadcasts()
You can also use
offset
andcount
when retrieving the broadcasts list:The text was updated successfully, but these errors were encountered: