gpt4 book ai didi

node.js - 部署机器人而不在 azure 上托管

转载 作者:太空宇宙 更新时间:2023-11-04 00:12:17 25 4
gpt4 key购买 nike

我使用 Microsoft 机器人框架(NodeJs)创建了一个机器人,它在本地系统上运行良好。当我使用 azure 函数部署时,它也工作正常。

但我正在尝试以其他方式进行部署,例如

1) I want to register my bot on azure 
2) but want to host somewhere else(SSL Certified server) i.e not on azure (don't want to use azure bot functions)

我已按照一些文章中的步骤进行操作

enter image description here

我的 App.js 看起来像这样

enter image description here

但是当我尝试使用“在网络聊天中测试”进行测试时,出现了以下错误

enter image description here

谁能帮帮我,我在这里做错了什么?

谢谢

最佳答案

对AWS不熟悉,但是为了让restify服务器支持HTTPS,你可以尝试使用:

const restify = require('restify');
const fs = require('fs');

const https_options = {
key: fs.readFileSync('./localhost_3978.key'), //on current folder
certificate: fs.readFileSync('./localhost_3978.cert')
};

server = restify.createServer(https_options);

在机器人应用程序之前使用 SSL 证书和 key 文件创建 Restify 服务器。

关于node.js - 部署机器人而不在 azure 上托管,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48905930/

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