如何获取用户在 Perl AGI 脚本中输入的扩展名?

发布于 2024-07-15 10:28:34 字数 437 浏览 13 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吾性傲以野 2024-07-22 10:28:34

我相信您想使用 get_data,允许您播放文件,然后等待给定的时间获取给定的数字位数,例如:

$AGI->get_data('demo-welcome', 15000, 5);

请参阅此处

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.:

$AGI->get_data('demo-welcome', 15000, 5);

See here

短暂陪伴 2024-07-22 10:28:34

好吧,由于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文