如何获取用户在 Perl AGI 脚本中输入的扩展名?
我是 Asterisk AGI 编程的新手。 我正在尝试使用 asterisk-perl 创建一个简单的 IVR,用户可以在其中输入从 1 到 4 的任何扩展名。这是到目前为止我的代码:
use Asterisk::AGI;
$AGI = new Asterisk::AGI;
for($i = 0 ; $i < 2 ; $i++)
{
$AGI->exec('Playback','welcome');
$AGI->exec('WaitExten','5|m');
}
现在,我想知道用户输入的扩展名并采取相应的操作。 如何获取用户输入的扩展名?
谢谢。
I'm new to Asterisk AGI programming. Im trying to create a simple IVR, using asterisk-perl, where a user can enter any extension from 1 to 4. Here is my code so far:
use Asterisk::AGI;
$AGI = new Asterisk::AGI;
for($i = 0 ; $i < 2 ; $i++)
{
$AGI->exec('Playback','welcome');
$AGI->exec('WaitExten','5|m');
}
Now, I want to know the extension the user entered and take some action accordingly. How to get the extension entered by the user?
Thank You.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您想使用 get_data,允许您播放文件,然后等待给定的时间获取给定的数字位数,例如:
请参阅此处
I believe you want to use get_data, allowing you to play a file and then wait a given time for a given number of digits e.g.:
See here
好吧,由于 WaitExten 命令将用户更改为新的分机,我想您可以读取特殊变量 ${EXTEN} 调用 WaitExten 后。 我对 Asterisk::Perl 并不熟悉,我只使用过 Java 中的 FastAGI,所以我不知道确切的命令,但必须有一些命令来读取变量的值。
Well since the WaitExten command changes the user to a new extension, I suppose you can read the special variable ${EXTEN} after calling WaitExten. I'm not familiar with Asterisk::Perl though, I've only used FastAGI from Java, so I don't know the exact command, but there must be some command to read a variable's value.