【发布时间】:2016-01-20 07:40:45
【问题描述】:
我想在该流程中连接两个电话号码:
Person_1 正在接听电话。播放了一条语音消息,询问他是否愿意参加电话会议。仅当接受电话会议的 Person_1 将被启动:
这就是我想要做的:
Intro.chtml:
<Response>
<Gather numDigits="1" action="StartConferenceCall.chtml" method="GET">
<Say>Press 1 to start the conference call</Say>
</Gather>
</Response>
StartConferenceCall.chtml:
@{
var digits = Request["Digits"];
if(digits == "1")
{
<Response>
<Dial> // I would like to dial the second person
<Conference beep="false" record="record-from-start"
Room 1234
</Conference>
</Dial>
</Response>
}
else
{
<Hangup/>
}
}
是否可以在<Dial> 标签内添加第二个数字?
【问题讨论】:
标签: twilio twilio-twiml