Hi everyeon.
I am a newbie to janus-gateway.
while I study videoroom plugin,
I put one button in client side to request "listparticipants" like below.
function debug0() {
if (sfutest) {
var debug = {
request: 'listparticipants',
room: myroom,
};
futest.send({ message:debug});
alert(res);
} else {
alert("sfutest is null");
}
}
I expect "participants" list as message or event.
but I did not receive anything after sending "listparticipants" request to server.
how I can get this result?
Any example or simple code on videoroom.js will be greatly helpful to me.