How to join a web sdk meeting with a tk?

Description
Once I have the user tk after user registred for a meeting that requires authentication, how do I join the meeting with it in the web sdk?

Which Web Meeting SDK version?
2.3.0

Hey Felippe,

You can pass the tk parameter to the join method like this

client.join({
  apiKey: apiKey,
  signature: signature,
  meetingNumber: meetingNumber,
  password: password,
  userName: userName,
  userEmail: userEmail,
  tk: registrantToken, 
});

You can go through this page for more clarity.

1 Like

We appreciate you sharing your insight @bkmnap!

Regards,
Donte

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.