将bot从本地git存储库部署到azure - https://docs.microsoft.com/en-us/bot-framework/deploy-bot-local-git
代码:
var restify = require('restify');
var builder = require('botbuilder');
var server = restify.createServer();
server.listen(process.env.port || process.env.PORT || 3978, function () { });
// Create the chat connector for communicating with the Bot Framework Service
var connector = new builder.ChatConnector({
appId: "app-id",
appPassword: "app-password"
});
// Listen for messages from users
server.post('/api/messages', connector.listen());
// Create your bot with a function to receive messages from the user
var bot = new builder.UniversalBot(connector, function (session) {
// echo the user's message
session.send("You said: %s", session.message.text);
});
在https://dev.botframework.com -
的网络聊天中获取http 500错误和消息将此消息发送到您的机器人时出错:HTTP状态代码InternalServerError
我可以使用localhost url和App Id和密码从Bot Framework Emulator连接到bot。
也许我需要指定web应用程序是nodejs?我在应用程序设置中没有看到有关app或nodejs选项的入口点的任何信息。
编辑: 改变"主要":" index.js" to" main":" app.js"但仍无法发送测试信息。
EDIT2:我将web.config添加到项目中(不对建议的代码进行任何更改),之后我在bot页面上收到消息(http://it-perf-bot.azurewebsites.net/api/messages) - 由于发生内部服务器错误,无法显示页面。然后我添加了IISnode.yml
loggingEnabled: true
devErrorsEnabled: true
并收到此消息 - http://prntscr.com/gc8vww 将bot推送到azure时记录 - http://prntscr.com/gc8wia,
package.json文件未指定node.js引擎版本约束。
我将"engines":{"node": "8.1.4"}
添加到package.json并获取
您要查找的资源已被删除,名称已更改或暂时不可用。 我的机器人 - https://github.com/lavandil/skypeBot1。
EDIT3:在制作edit2时我测试了网址http://it-perf-bot.azurewebsites.net/api/messages并获得了不同的警告
由于使用了无效的方法(HTTP动词),无法显示您要查找的页面。
然后我在dev.botframework.com和Bot Framework Emulator上测试机器人 - 在将节点版本添加到包json后,一切正常。谢谢你的回复!
答案 0 :(得分:3)
也许我需要指定web应用程序是nodejs?我没有在应用程序设置中看到有关app或nodejs选项入口点的任何信息。
您需要做的是在Node.js应用程序的根目录中创建一个web.config
文件(如果不存在)。作为参考,以下是使用 app.js 作为切入点的应用程序的默认web.config
。
<?xml version="1.0" encoding="UTF-8"?>
<!--
This configuration file is required if iisnode is used to run node processes behind
IIS or IIS Express. For more information, visit:
https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config
-->
<configuration>
<system.webServer>
<!-- Visit http://blogs.msdn.com/b/windowsazure/archive/2013/11/14/introduction-to-websockets-on-windows-azure-web-sites.aspx for more information on WebSocket support -->
<webSocket enabled="false" />
<handlers>
<!-- Indicates that the server.js file is a node.js web app to be handled by the iisnode module -->
<add name="iisnode" path="app.js" verb="*" modules="iisnode" />
</handlers>
<rewrite>
<rules>
<!-- Do not interfere with requests for node-inspector debugging -->
<rule name="NodeInspector" patternSyntax="ECMAScript" stopProcessing="true">
<match url="^app.js\/debug[\/]?" />
</rule>
<!-- First we consider whether the incoming URL matches a physical file in the /public folder -->
<rule name="StaticContent">
<action type="Rewrite" url="public{REQUEST_URI}" />
</rule>
<!-- All other URLs are mapped to the node.js web app entry point -->
<rule name="DynamicContent">
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="True" />
</conditions>
<action type="Rewrite" url="app.js" />
</rule>
</rules>
</rewrite>
<!--
You can control how Node is hosted within IIS using the following options:
* watchedFiles: semi-colon separated list of files that will be watched for changes to restart the server
* node_env: will be propagated to node as NODE_ENV environment variable
* debuggingEnabled - controls whether the built-in debugger is enabled
See https://github.com/tjanczuk/iisnode/blob/master/src/samples/configuration/web.config for a full list of options
-->
<!--<iisnode watchedFiles="web.config;*.js"/>-->
</system.webServer>
</configuration>
此外,对于500错误,您需要启用stdout和stderr的日志记录以进行故障排除,并查看日志所说的内容。要启用调试,请参阅my earlier answer here。
答案 1 :(得分:0)
在制作edit2时,我测试网址http://it-perf-bot.azurewebsites.net/api/messages并获得不同的警告
由于正在使用无效方法(HTTP动词),因此无法显示您要查找的页面。 然后我在dev.botframework.com和Bot Framework Emulator上测试bot - 在将节点版本添加到包json后,一切正常。谢谢你的回复!