twiliotwilio-videowebrtc-ios

Twilio room type not set to GO even after changing room settings in console


I'm following the links below to setup Twilio WebRTC Go - one to one video calling app on iOS using Swift

https://www.twilio.com/blog/announcing-twilio-video-webrtc-go https://github.com/twilio/twilio-video-app-ios

But when I run the app and generate the Access Token using

twilio rtc:apps:video:deploy --authentication passcode

I'm getting the room type as

Room Type: group

I've set the room type to Go in the console in room settings, even then it returns "group".

How do I change the room type to GO? Any help would be appreciated. Thanks


Solution

  • Twilio developer evangelist here.

    Your token server determines the room type and you can set the room type when you deploy the server using the --room-type flag.

    twilio rtc:apps:video:deploy --authentication passcode --room-type go
    

    So, redeploy your token server, pass --room-type go and you should be good.