bot.on('message',httpGet(msg))
httpGet( function (msg) {
var chatId = msg.chat.id;
console.log(msg);
bot.sendMessage(chatId, "Привет11", {caption: "I'm a bot!"});
return chatId;
}.then(sendM (chatId),function (chatId) {
return chatId;
}));
bot.on('message', httpGet(msg))
httpGet(
function(msg) {
var chatId = msg.chat.id;
console.log(msg);
bot.sendMessage(chatId, "Привет11", {
caption: "I'm a bot!"
});
return chatId;
}.then(sendM(chatId), function(chatId) {
return chatId;
})
);