Using Jitsi setup for the host (https://meet.docintel.app), and low level api for my participants.
Note: You can’t access host URL as i am using JWT and authentication
Now i am not able to unmute participant. using code like:
add this in ConnectionSuccess function:
room.on(JitsiMeetJS.events.conference.AV_MODERATION_APPROVED, askToUnmuteApproval);
function askToUnmuteApproval(track) {
if(confirm('Host approved your request. You can speak now')){
room.setLocalParticipantProperty('raisedHand', false);
let audioTrack = localTracks.find(t => t.getType() === CONSTANTS.AUDIO);
audioTrack.unmute();
}
}
Everything is working except this, not able to unmute participant
Thanks in advance