使用带有Node.js的电报机器人发送消息

时间:2016-06-17 13:50:53

标签: node.js

我正在做一项服务,警告我可能在我的服务器上发生的错误,我的疑问是,在我发送消息后,我最终确定了执行或它正常显示图像的方式?为了完成任务,我必须采取ctrl + c

代码:

var util = require('util');

var TelegramBot = require('node-telegram-bot-api');

var token = '237907874:AAG8hK1lPWi1WRlqQT2';

var bot = new TelegramBot(token, {polling: true});

var millisecondsToWait = 5000;

robot = {
    "alert": function teste(message) {
        var toId = '-103822200';
        var resp = util.format('alerta: %s', message);
        bot.sendMessage(toId, resp);
    }
}

robot.alert(process.argv[2]);

在cmd中执行此代码

node.exe bot.js 'text send'

this is image

1 个答案:

答案 0 :(得分:0)

看起来发生了一些错误但没有捕获:

var robot = { // Don't forget about var :)
    "alert": function teste(message) {
        var toId = '-103822200';
        var resp = util.format('alerta: %s', message);
        bot.sendMessage(toId, resp)
        .catch(function(error){ // Catch possible error
            console.error(error);
        });
    }
}