1.0.1 • Published 7 months ago

nubitel-telegram-api v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Node.js Telegram API

Telegram API framework for Node.js


Features

✅ Explicit messages handlers ✅ Fallback messages handler (empty string) ✅ Regex matching on text messages ✅ Buttons support (inline keyboard, reply keyboard and remove reply keyboard) ✅ Secret token support ✅ Long polling support

Getting started

Installation

npm install nubitel-telegram-api

Install dependencies

In order to reduce the node_modules size dotenv (for environment variables) and express (for local development / deployment) packages are defined as devDependencies.

You don't have to use these packages if you don't want to, and you can use them only for local development if you choose so. If you do choose to work with these packages, install them manually:

npm install express dotenv

Or for serverless deployments install express as a dev dependency (to use in your local development environment) instead:

npm install express --save-dev

Set webhook

In order to listen to updates from Telegram servers you have to set up a webhook. To use the npx set-webhook command you should provide the webhook parameter and api token. You can do that by:

  1. Setting the WEBHOOK and API_TOKEN environment variables (SECRET_TOKEN is optional).
  2. Storing them in .env file (SECRET_TOKEN is optional).
  3. Use the --apiToken and --webhook command arguments (--secretToken is optional).

You also can provide the secret token parameter if you choose to.

Then you can execute the following command:

npx set-webhook

Long polling

If you prefer to use long polling method over creating a server with webhook you can use the startLongPolling method instead of createServer. The method accepts pollingDelay - a number that represents milliseconds (must be at least 50ms).

Note that long polling is usually not recommended and webhook is preferred for most use cases.

Usage

const NubitelTelegram = require('nubitel-telegram-api');
require('dotenv').config();

const bot = new NubitelTelegram({
	apiToken: process.env.API_TOKEN,
});

bot.createServer(); // spins up an express server

bot.onTextMessage('hello', async (messageBody) => {
	console.log(messageBody);
	await bot.sendTextMessage('hello back', messageBody.chat.id);
});

In this example the bot will listen only to 'hello' text messages and will respond to the user 'hello back'. Any other message will be ignored.

  • Note that bot.createServer() method requires express, and we are using dotenev as well which both are not installed automatically with NubitelTelegram.

Webhook security with secret token

You can secure your webhook with a secret token via the setWebhook method. You can do that by creating a SECRET_TOKEN variable in the .env file of your project (or environment variable) and run the npx set-webhook command. The command will tell Telegram servers to send the secret token in each request to your webhook as x-telegram-bot-api-secret-token header.

In order for the bot to use the secret token you need to pass to the NubitelTelegram class you instanciate the secretToken parameter.

You will have to pass a secretToken parameter to the telegramHandler method as well.

You can pass a third parameter called unauthorizedCallback - a callback that will fire in case the request wasn't authorized.


Run feature examples:

After you have set your webhook you can play and test the NubitelTelegram features.

Each feature of NubitelTelegram is demonstrated in an example file inside the examples folder (inside node_modules if you installed NubitelTelegram). You can run an example from the nubitel-telegram-api directory inside node_modules by using the command:

npm run dev --file=<example>

You might need nodemon and dotenv installed as dev dependencies to run the examples with the command above.


Deployment:

Since these days it is common to use serverless backend services, you can choose how the bot will work - or with express or with the HTTP engine of the serverless provider.

In order to spin up an express server you should use the command bot.createServer() - this is useful for deployments on VMs / containers / on-premise.

You can pass an object as options for createServer. Currently, it supports port and unauthorizedCallback (if you use secret token) - e.g:

bot.createServer({ port: 4000 }) // the default is 3000

In the other hand, if you want to deploy on serverless backend you need to use bot.telegramHandler method and pass to it the request object. You will probably have something like this:

functions.https.onCall((req, res) => {
    const secretToken = req.headers['x-telegram-bot-api-secret-token'];
    bot.telegramHandler(req.body, secretToken, unauthorizedHandler);
    res.end();
});

Note that on serverless you should extract by your own the secretToken since every serverless service might process the req object differently.