Hi everyone,
I am currently working on an educational platform in partnership with a few American universities. We build a nodejs server that create meetings and get the join url with redirect to false to get the link with the sessionToken (to extract the learning dashboard at the end of the meeting). When i try to join the meeting with the url response:
<response>
<returncode>SUCCESS</returncode>
<messageKey>successfullyJoined</messageKey>
<message>You have joined successfully.</message>
<meeting_id>640ab2bae07bedc4c163f679a746f7ab7fb5d1fa-1531155809613</meeting_id>
<user_id>w_euxnssffnsbs</user_id>
<auth_token>14mm5y3eurjw</auth_token>
<session_token>ai1wqj8wb6s7rnk0</session_token>
<url>
https://yourserver.com/client/BigBlueButton.html?sessionToken=ai1wqj8wb6s7rnk0</url>
</response>
I got the message "You have been excluded from the meeting" see the screenshot below.
When i try to just send the construct url with queryString and checksum to the frontend it works fine but i need to have the sessionToken with me to get the LearningDashboard for analytics purposes. Do i need to make the request to join twice ? One to get the sessionToken and another one to send to the user ?
Thank you guys for your response !