1.0.0 • Published 10 years ago

yamstr-telegram-bot-api v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

yamstr-telegram-bot-api

Telegram Bot API Wrapper

Installation

$ npm install yamstr-telegram-bot-api

Example

var Telegram = require('yamstr-telegram-bot-api');
var telegram = new Telegram({
	token: '<token>'
});

telegram.request('sendMessage', {
	chat_id: '<chat_id>',
	text: '<text>'
}, function(error, response) {
	if (error) {
		console.error(error);
	} else {
		console.log(response);
	}
});
1.0.0

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago