How can I save the room which I made permantly? and

  1. When I turn off and on the server, all the rooms I made are gone.

  2. I put random property and value like this in to the server code in 'janus.plugin.videoroom.jcfg

room-1234: {
  blablabla~~~  
  wow : "randomString"
}

But when I console from this code, I can’t get wow value.

socket.on('rooms-list', ({ data }) => {
  console.log('data in rooms-list >>>>>> ', data); 
}

How can I treat it to go on well?

The permanent property is well documented:
https://janus.conf.meetecho.com/docs/videoroom

1 Like

Thank you very much!