@Manza, as you have asked in the comments I am sharing the sample code of what I did.
Step 1: sent a post request using ajax with the Name and Meeting PIN as an input from user.
Step 2: Generating Token based on the meeting Pin using REST API in Asp.Net MVC 4.7
public JsonResult GenerateToken(string userName,int pin)
{
int ExpiryDuration = 120;
var grants = new HashSet<IGrant>();
var videoGrant = new VideoGrant();
var roomName = Guid.NewGuid().ToString();
videoGrant.Room = roomName;
grants.Add(videoGrant);
DateTime expireTime = DateTime.Now.AddMinutes(ExpiryDuration);
var token = new Token(
twilioAccountAccountSid,
twilioAccountApiKey,
twilioAccountApiSecret,
userName,
grants: grants,
expiration: expireTime).ToJwt();
return Json(new { token , roomName }, JsonRequestBehavior.AllowGet);
}
Step 3: On the frontend side on ajax success I save the token in localstorage and redirect to a new page where I included this JS SDK to do all the work from client side
<script src="//media.twiliocdn.com/sdk/js/video/releases/2.7.2/twilio-video.min.js"></script>
Step 4: To create a new connection with using the token I used following code
const ID_TOKEN = "BEARER_DETAILS";
// ConnectOptions settings for a video web application.
const connectOptions = {
// Available only in Small Group or Group Rooms only. Please set "Room Type"
// to "Group" or "Small Group" in your Twilio Console:
// https://www.twilio.com/console/video/configure
bandwidthProfile: {
video: {
mode: 'collaboration',
trackSwitchOffMode: 'predicted',
dominantSpeakerPriority: 'high',
maxTracks: 3,
renderDimensions: {
high: { width: 1080, height: 720 },
standard: { width: 640, height: 480 },
low: { width: 320, height: 240 }
}
}
},
networkQuality: {
local: 1, // LocalParticipant's Network Quality verbosity [1 - 3]
remote: 2 // RemoteParticipants' Network Quality verbosity [0 - 3]
},
// Available only in Small Group or Group Rooms only. Please set "Room Type"
// to "Group" or "Small Group" in your Twilio Console:
// https://www.twilio.com/console/video/configure
dominantSpeaker: true,
// Comment this line to disable verbose logging.
logLevel: 'debug',
// Comment this line if you are playing music.
maxAudioBitrate: 16000,
// VP8 simulcast enables the media server in a Small Group or Group Room
// to adapt your encoded video quality for each RemoteParticipant based on
// their individual bandwidth constraints. This has no utility if you are
// using Peer-to-Peer Rooms, so you can comment this line.
preferredVideoCodecs: [{ codec: 'VP8', simulcast: true }],
// Capture 720p video @ 24 fps.
video: { height: 720, frameRate: 24, width: 1280 }
};
// For mobile browsers, limit the maximum incoming video bitrate to 2.5 Mbps.
if (isMobile) {
connectOptions
.bandwidthProfile
.video
.maxSubscriptionBitrate = 2500000;
}
data = JSON.parse(window.localStorage.getItem(ID_TOKEN));
const token = await data.Token;
connectOptions.name = data.RoomName;
// Join to the Room with the given AccessToken and ConnectOptions.
const room = await Twilio.Video.connect(token, connectOptions);
I did try to include as much as I could, let me know if it helps.