Twilio可编程视频-参与者加入会议室时的自定义信息

时间:2018-08-18 13:44:51

标签: twilio twilio-api twilio-video

因此,有一个STATUS CALLBACKS的webhook。我想知道是否可以向此回调添加自定义参数,尤其是在参与者加入时。我需要知道为哪个用户分配了哪个参与者ID。我正在使用video-quickstart-js。将其放在here的地方会很棒吗?

1 个答案:

答案 0 :(得分:0)

在回调中,当您获得加入事件并获得参与者加入的sid时,您是否尝试过使用Participant API通过参与者的sid查找参与者?

https://www.twilio.com/docs/video/api/participants

正如我所看到的,视频快速入门需要进行必要的更改,以便您能够使用从客户端传递来的身份-

// Obtain a token from the server in order to connect to the Room.
$.getJSON('/token', function(data) {
identity = data.identity;

您可以将URL修改为/token?identity=<whatever>。然后在/token处理程序中,您将使用该身份生成令牌。

希望这会有所帮助