有帮助吗?I'm playing around Twilio programmable Voice (Conference) along with PHP.I'm unable to implement administrative functions like muting/un-muting all participants, start & stop recording etc by moderator of the conference, I preferably would like to use *1, *2, *3, *4 as keypad presses by moderator to have control over the active ongoing conference call.Appreciate your feedback.The flow I've created so far as prototype is working good.Participant/moderator dials Twilio numberTwiML greets users by and prompts to capture PIN code by usingPIN code validated by action URL on my serverWhen two participant & moderator joins conference is working. 解决方案 Twilio developer evangelist here.In order to achieve this, you need to add a couple of things to your conference.First, add the hangupOnStar attribute to the <Dial> for your moderator. That will allow the moderator to temporarily leave the conference by dialling *.When they do, Twilio will request the URL in the action attribute. You will want to respond to that request with TwiML that allows the moderator to perform the muting action, so you'll need a <Gather>. The <Gather> will need an action attribute that receives the Digits pressed by the moderator, performs the action (muting/unmuting) using the REST API and returns TwiML to put the moderator back into the <Conference>.Does that help? 这篇关于如何在Twilio可编程语音(会议)中建立管理功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-03 00:08