gpt4 book ai didi

node.js - Amazon Alexa、alexa-app 和中间件

转载 作者:IT老高 更新时间:2023-10-28 23:03:42 26 4
gpt4 key购买 nike

已经走了 2 天不同的路线,无法弄清楚。也许有人可以阐明我的问题。我正在尝试运行一个连接到多个平台并且已经有大约 5 个工作的机器人服务器。

我现在也在尝试集成 Alexa。我看到 Alexa 请求进入我的服务器(因此 Alexa 技能和端点配置是正确的),但这也花了我相当长的时间,因为亚马逊显然只将流量发送到端口 443,因此允许在亚马逊开发中心定义另一个端口号,但什么都不做……很好!通过添加带有端口转发的负载均衡器来解决。

关于真正的问题。我正在尝试使用以下示例中的 alexa-app 作为我的框架:

var express = require("express");
var alexa = require("alexa-app");
var express_app = express();

var app = new alexa.app("sample");

app.intent("number", {
"slots": { "number": "AMAZON.NUMBER" },
"utterances": ["say the number {-|number}"]
},
function(request, response) {
var number = request.slot("number");
response.say("You asked for the number " + number);
}
);

// setup the alexa app and attach it to express before anything else
app.express({ expressApp: express_app });

// now POST calls to /sample in express will be handled by the app.request() function
// GET calls will not be handled

// from here on, you can setup any other express routes or middleware as normal

我不知道的部分是当我在一个文件中设置我的快速服务器然后想要使用中间件函数在第二个文件中设置我的监听器时如何使用它......类似于:

app.js:

var express = require("express");
var express_app = express();

https.createServer({
key: fs.readFileSync(key),
cert: fs.readFileSync(cert),
ca: fs.readFileSync(ca)
}, app).listen(port, function () {
console.log("http: api server listening on port " + port);
});

app.use('/alexa', controller.Bot.Messenger.Listener.botMiddleWare());

listener.js:

var alexa = require("alexa-app");
var app = new alexa.app("sample");

bot.botMiddleWare = function botMiddleWare () {
return <return function to connect to express in app.js>;
}

感谢任何帮助或指点!

最佳答案

最后,我设法通过 epxress 路由器将我的主 app.js 连接到 alexa-app 的 getMessagingHandler 函数。因此,在 app.js 中,将您的 alexa webhook 路由到您的监听器中的 getMessagingHandler,然后在监听器中:

var bot = new alexa.app('my_bot');

bot.getMessagingHandler = function getMessagingHandler() {
return function (req, res) {
req.on('end', function(){
var jsonData = JSON.parse(requestBody);
if(jsonData.request.type == "LaunchRequest") {
// handle response here
}
}
}
}
module.exports = bot;

在主 app.js 中:

app.use('/alexa', controller.Bot.Alexa.Listener.getMessagingHandler());

关于node.js - Amazon Alexa、alexa-app 和中间件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43192818/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com