使用TwiML连接到SIP呼叫后发送数字

时间:2016-08-19 22:09:00

标签: twilio

当连接到PSTN号码时,您可以使用号码

上的sendDigits属性连接呼叫后,Twilio发送DTMF
<Response>
  <Dial callerId="5555555556">
    <Number sendDigits="www12345ww#">5555555555</Number>
  </Dial>
</Response>

你怎么能用Sip标签完成类似的事情?

<Response>
  <Dial callerId="callerId">
    <Sip sendDigits="www12345ww#">sip:alice@example.com</Sip>
  </Dial>
</Response>

1 个答案:

答案 0 :(得分:0)

sendDigits attribute仅适用于<Number> TwiML名词。

所以你在<Sip>上面的内容根本不起作用。

您不能在与SIP相同的<Number>中添加任何其他名词(例如<Client><Dial>)。如果您想使用其他名词,请在<Dial>上设置回调以使用替代方法。

希望这有帮助!