I want to integrate jitsi in my PHP site.
My requirement is exactly like a classroom. The trainer takes the class and the students participate in the class. The trainer should be logged in and he created a video conferencing class 2 days before. For eg: at 3 pm he is scheduling a class. After 2 days the students who paid for this class joining in this video conferencing. Only the paid students can able to join in this video conferencing and also I don’t need any ability for student to invite other people for this class. Only the selected student and the trainer is able to connect in video conferencing.
This is possible?
Can you please suggest and refer to any code?
I think i can use only the below code for this purpose. But how can i achieve my requirements by using this code can you please suggest.
<script>
var domain = "meet.jit.si";
var options = {
roomName: "videoconference1008",
width: '100%',
height: 500,
parentNode: undefined,
configOverwrite: {},
interfaceConfigOverwrite: {
filmStripOnly: true
}
}
var api = new JitsiMeetExternalAPI(domain, options);
</script>