node-telegram-api/README.md

59 lines
1.6 KiB
Markdown
Raw Normal View History

2015-06-26 17:20:54 +00:00
# Telegram Bots
Create and control [Telegram bots](https://core.telegram.org/bots) easily
using the new [Telegram API](https://core.telegram.org/bots/api).
2015-06-26 17:20:54 +00:00
2015-06-28 22:42:48 +00:00
telegram-api is in beta, your feedback is appreciated, please [fill an issue](https://github.com/mdibaiee/node-telegram-api/issues)
2015-06-27 00:33:47 +00:00
for any bugs you find or any suggestions you have.
2015-07-03 23:26:15 +00:00
For an example of a bot written using this module, see [Bots using this module](#bots-using-this-module) below.
2015-06-26 17:20:54 +00:00
```
npm install telegram-api
2015-06-26 17:20:54 +00:00
```
2015-06-30 07:47:14 +00:00
If you are cloning this repository, remember to run `npm install` to install dependencies.
[**Documentation**](https://github.com/mdibaiee/node-telegram-api/wiki)
2015-06-26 23:56:28 +00:00
2015-07-03 23:33:35 +00:00
#Example
```javascript
var Bot = require('telegram-api');
var Message = require('telegram-api/types/Message');
var File = require('telegram-api/types/File');
var bot = new Bot({
token: 'YOUR_TOKEN'
});
bot.start();
bot.get(/Hi|Hey|Hello|Yo/, function(message) {
var answer = new Message().text('Hello, Sir').to(message.chat.id);
bot.send(answer);
});
bot.command('start', function(message) {
var welcome = new File().file('./some_photo.png').caption('Welcome');
bot.send(welcome);
});
```
2015-06-28 22:42:48 +00:00
# Bots using this module
2015-07-03 23:26:15 +00:00
[@JavaScriptBot](https://telegram.me/JavaScriptBot) => [mdibaiee/javascriptbot](https://github.com/mdibaiee/javascriptbot)
2015-06-28 22:42:48 +00:00
# Todo
- [x] Webhook support (not tested, see [#4](https://github.com/mdibaiee/node-telegram-api/issues/4))
2015-06-30 22:04:44 +00:00
- [x] Forward Type
2015-07-03 13:06:07 +00:00
- [x] BulkMessage Type
2015-07-02 22:33:22 +00:00
- [x] File Type
2015-06-28 22:48:44 +00:00
- [ ] Sticker Type
- [ ] Location Type
- [ ] Contact Type
- [ ] Allow remote control of bots (TCP maybe)
2015-06-28 22:54:41 +00:00
- [ ] YOUR IDEAS! [Fill an issue](https://github.com/mdibaiee/node-telegram-api/issues)