1

在我的 Freeswitch IVR 中有一个类似的条目,

<entry action="menu-exec-app" digits="1" param="voicemail default $${domain} 8000"/>

在这里,我也想"curl http://www.google.com"按 1 的同一个数字,

<entry action="menu-exec-app" digits="1"
 param="voicemail default $${domain} 8000 AND curl http://www.google.com"/>

有没有可能?如果可能,我们如何实现它?

4

1 回答 1

2

您可以使用 execute_extension,通过一个数字按键运行多个应用程序。像这样,

<entry action="menu-exec-app"
           digits="1"
           param="execute_extension voicemail:'default $${domain} 8000',curl:'http://www.google.com' inline"/>

https://freeswitch.org/confluence/display/FREESWITCH/mod_dptools:+IVR+Menu#mod_dptools:IVRMenu-Howtorunseveralappswithonedigit

于 2019-01-10T08:27:42.207 回答