Persistent Room that once created can Start or Restart again & again anytime without recreating #294
-
Hi, I am looking for something like Persistent Room that once created can Start or Restart again & again anytime without recreating (zoom meetings have this), create room once and than just about user access token that gets expired that needs to be renewed. CURRENT SETUP (hacky method / not ideal) -
QUESTIONS -
Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
I don't think it's an ideal solution. In your own application you should create one static room. User will always use that link to join the session. When user will try to join during that time your system will send API request to plugNmeet for creating room. You can check the flow from here: https://www.plugnmeet.org/docs/tutorials/quick_php . We're using same pattern for our wordpress, moodle & joomla plugin. |
Beta Was this translation helpful? Give feedback.
-
Hi, Your RECOMMENDED FLOW or similar flow is this -
MY FLOW is this (to avoid some extra http requests) -
See my flow avoided 1st & 2nd step of your flow for once occuring 3rd step of my flow, generating User Access Token everytime is also avoided by caching, decoding & checking if it has not expired to reuse. All this to avoid some extra http requests. QUESTIONS -
|
Beta Was this translation helpful? Give feedback.
-
I used alternative flow to solve the issue -
This flow might not makes sense for somebody but for my already heavy website, this could save some resources for server / time for user. |
Beta Was this translation helpful? Give feedback.
I used alternative flow to solve the issue -