2017-03-06 40 views
1

视频通话过程中发送的消息在addLive API,我们可以在视频通话 http://api.addlive.com/beta/apidocs/ADL.AddLiveService.html#sendMessage如何在twilio

发送消息现在我想用twilio来代替我的addlive,我能够进行视频通话,但我无法找到我怎么能发送消息(聊天)到客户端

var videoClient = new Twilio.Video.Client(twilioToken); 


videoClient.connect({ to: roomName }).then(roomJoined, function (error) { 
    $scope.isError = true; 
    console.log('Could not connect to Twilio: ' + error.message); 
    console.log(error) 
}); 

回答