我正在使用Asterisk ARI Node.js 客户端,想监听某些事件然后执行操作。据我了解,在连接到服务器后,您可以为通过 WebSockets 发布的事件设置几种不同类型的事件侦听器以执行任务。在下面的代码中,即使我触发了这些特定事件并且可以通过 WSCat 连接并观看事件流,我也没有收到任何输出。
我正在构建的应用程序应该只监听发生的事件并更新数据库。我永远不需要通过 HTTP 请求访问 Node 应用程序,这就是为什么我对服务器的每个请求都返回禁止。我的最终目标是让这个应用程序位于对事件做出反应的服务器上。
'use strict';
const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
const client = require('ari-client');
const util = require('util');
const server = http.createServer((req, res) => {
res.statusCode = 403;
res.end('FORBIDDEN');
});
server.listen(port, hostname, () => {
client.connect('http://127.0.0.1:8088', 'username', 'password')
.then(function(ari) {
ari.on('DeviceStateChanged', function(event) {
console.log(event);
})
ari.on('ChannelCreated', function(event) {
console.log(event);
})
ari.on('BridgeCreated', function(event) {
console.log(event);
})
ari.on('StasisStart', function(event) {
console.log(event);
})
ari.on('PeerStatusChange', function(event) {
console.log('blah', event);
})
ari.on('Dial', function(event) {
console.log('Dial', event);
})
})
.catch(function(err) {
console.log(err);
})
});