Deprecated: A simple API to create and control Telegram bots
Go to file
2015-06-27 03:03:30 +04:30
lib message should listen on replys instead of general messages 2015-06-27 03:03:30 +04:30
.gitignore initial commit 2015-06-26 21:50:54 +04:30
index.js initial commit 2015-06-26 21:50:54 +04:30
LICENSE Initial commit 2015-06-26 03:04:01 +04:30
package.json rename 2015-06-27 01:16:22 +04:30
README.md message should listen on replys instead of general messages 2015-06-27 03:03:30 +04:30

Telegram Bots

Create and control Telegram bots easily using the new Telegram API.

npm install telegram-api

Example

var Bot = require('./index');

var smartBot = new Bot({
  token: 'YOUR_KEY'
});

smartBot.start();

// You can use regular expressions, too
smartBot.get('Hi', function(update) {
  const message = update.message;
  const id = message.chat.id;

  const question = 'How should I greet you?',
        answers = ['Hi', 'Hello, Sir', 'Yo bro'];

  smartBot.askQuestion(id, question, answers)
  .then(answer => {
    smartBot.message(id, 'Your answer: ' + answer);
  }, () => {
    smartBot.message(id, 'Invalid answer');
  });
});

// Commands are in format `/command` or `/command@botusername` in groups
smartBot.command('test', update => {
  const message = update.message;
  const id = message.chat.id;

  smartBot.message(id, 'Test command');
});

smartBot.command('start', update => {
  smartBot.message(update.message.chat.id, 'Hello!');
});

// You can access all API methods through the api property until we implement
// easier methods
smartBot.api.getUserProfilePhotos

This will result in: