Freeswitch IVR在两个参数操作上按下一个数字和桥接器



在My Freeswitch IVR中有一个条目,如

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

在这里,我也想在按下1的同一数字上转到"curl http://www.google.com",比如

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

这可能吗?如果可能的话,我们如何实施?

您可以使用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+菜单#mod_dptools:IVRMenu Howtorunse verall apps with one digit

相关内容

  • 没有找到相关文章

最新更新