update README and demo.js
This commit is contained in:
parent
714ffa9458
commit
4ac725ea58
@ -24,8 +24,8 @@ var bot = new Bot({
|
||||
token: 'YOUR_KEY'
|
||||
});
|
||||
|
||||
bot.start().then(() => {
|
||||
console.log(bot.info);
|
||||
bot.start().catch(err => {
|
||||
console.error(err, '\n', err.stack);
|
||||
});
|
||||
|
||||
// polling
|
||||
@ -44,7 +44,7 @@ bot.get(/Hi\sBot/, message => {
|
||||
question.to(id).reply(message.message_id);
|
||||
|
||||
bot.send(question).then(answer => {
|
||||
const msg = new Message().to(id).text('Your answer: ' + answer);
|
||||
const msg = new Message().to(id).text('Your answer: ' + answer.text);
|
||||
bot.send(msg);
|
||||
}, () => {
|
||||
const msg = new Message().to(id).text('Invalid answer');
|
||||
|
@ -47,7 +47,9 @@ function fetch(path, data) {
|
||||
req.write(post);
|
||||
}
|
||||
req.end();
|
||||
})['catch'](console.error);
|
||||
})['catch'](function (err) {
|
||||
console.error('Error sending request', err);
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = exports['default'];
|
||||
|
@ -148,7 +148,7 @@ var Message = (function (_Base) {
|
||||
bot.removeListener('update', listener);
|
||||
}
|
||||
});
|
||||
})['catch'](console.error);
|
||||
});
|
||||
}
|
||||
}]);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user