即使在控制台中更改房间设置后,Twilio 房间类型也未设置为 GO
Twilio room type not set to GO even after changing room settings in console
我正在点击下面的链接,使用 Swift
在 iOS 上设置 Twilio WebRTC Go - 一对一视频通话应用程序
https://www.twilio.com/blog/announcing-twilio-video-webrtc-go
https://github.com/twilio/twilio-video-app-ios
但是当我 运行 应用程序并使用
生成访问令牌时
twilio rtc:apps:video:deploy --authentication passcode
我得到的房型为
Room Type: group
我已经在房间设置的控制台中将房间类型设置为 Go,即便如此 returns“组”。
如何将房型更改为GO?任何帮助,将不胜感激。谢谢
此处为 Twilio 开发人员布道师。
您的令牌服务器决定房间类型和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
所以,重新部署你的令牌服务器,通过 --room-type go
你应该没问题。
我正在点击下面的链接,使用 Swift
在 iOS 上设置 Twilio WebRTC Go - 一对一视频通话应用程序https://www.twilio.com/blog/announcing-twilio-video-webrtc-go https://github.com/twilio/twilio-video-app-ios
但是当我 运行 应用程序并使用
生成访问令牌时twilio rtc:apps:video:deploy --authentication passcode
我得到的房型为
Room Type: group
我已经在房间设置的控制台中将房间类型设置为 Go,即便如此 returns“组”。
如何将房型更改为GO?任何帮助,将不胜感激。谢谢
此处为 Twilio 开发人员布道师。
您的令牌服务器决定房间类型和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
所以,重新部署你的令牌服务器,通过 --room-type go
你应该没问题。