0

我使用 c9 作为我的开发环境,并且在开发环境下运行时,即使调用了 send.batch,机器人实际上也不会发送消息。

var bot = new builder.UniversalBot(connector);

bot.dialog('/', function (session) {
  session.send('Alec said ' + session.message.text);
});
function status(request,reply){
 connector.listen(request.raw.req,request.raw.res);
 return reply("ok");
}
  if (useEmulator) {
   var restify = require('restify');
   var server = restify.createServer();
   server.listen(8080, function() {
     console.log('test bot endpont at http://localhost:8080/api/messages');
   });
   server.post('/api/messages', connector.listen());  
} else {
  module.exports = { default: connector.listen() }
}

那是用于实现服务器的代码,取自 azure bot setup,我编辑了端口,因为 c9 无法使用默认端口。

通过模拟器发送消息后的结果

4

1 回答 1

0

似乎使用云 9 服务器不允许我发送响应消息,我的解决方案是 ssh 到我自己的服务器,此时应用程序将按预期工作。

于 2016-12-28T04:39:44.290 回答