All Projects → hosein2398 → Node Telegram Bot Api Tutorial

hosein2398 / Node Telegram Bot Api Tutorial

node-telegram-bot-api tutorial

Projects that are alternatives of or similar to Node Telegram Bot Api Tutorial

Messenger
Open source, native iOS Messenger, with realtime chat conversations (full offline support).
Stars: ✭ 4,264 (+2109.33%)
Mutual labels:  telegram, messenger
Telegram React
Experimental Telegram web client with tdlib, webassembly and react js under the hood
Stars: ✭ 1,332 (+590.16%)
Mutual labels:  telegram, messenger
Chat
Instant messaging platform. Backend in Go. Clients: Swift iOS, Java Android, JS webapp, scriptable command line; chatbots
Stars: ✭ 8,238 (+4168.39%)
Mutual labels:  telegram, messenger
Messenger Ios Chat Swift Firestore
Messenger Clone - Real-time iOS Chat with Firebase Firestore written in Swift
Stars: ✭ 405 (+109.84%)
Mutual labels:  telegram, messenger
Ton
Telegram Open Network research group. Telegram: https://t.me/ton_research
Stars: ✭ 146 (-24.35%)
Mutual labels:  tutorial, telegram
Telegram Tutorial
Уроки по написанию своих Telegram-ботов
Stars: ✭ 409 (+111.92%)
Mutual labels:  tutorial, telegram
Bot Telegram
Exemplo de como criar um BOT para o melhor app de mensagens do mundo: Telegram.
Stars: ✭ 53 (-72.54%)
Mutual labels:  tutorial, telegram
Egram.tel
Crossplatform Telegram client
Stars: ✭ 305 (+58.03%)
Mutual labels:  telegram, messenger
Messaging Apis
Messaging APIs for multi-platform
Stars: ✭ 1,754 (+808.81%)
Mutual labels:  telegram, messenger
Ios
Tinodios: Tinode Messaging Client for iOS
Stars: ✭ 119 (-38.34%)
Mutual labels:  telegram, messenger
Userge
Userge, Durable as a Serge
Stars: ✭ 363 (+88.08%)
Mutual labels:  tutorial, telegram
Webapp
Tinode web chat using React
Stars: ✭ 156 (-19.17%)
Mutual labels:  telegram, messenger
Bottender
⚡️ A framework for building conversational user interfaces.
Stars: ✭ 3,803 (+1870.47%)
Mutual labels:  telegram, messenger
Franz
Franz is a free messaging app for services like WhatsApp, Slack, Messenger and many more.
Stars: ✭ 4,088 (+2018.13%)
Mutual labels:  telegram, messenger
Falconmessenger
🌟🌟🌟🌟🌟 Falcon Messenger is a Fast and Beautiful cloud-based messaging app. With iOS and IPadOS Support. Available on the App Store.
Stars: ✭ 310 (+60.62%)
Mutual labels:  telegram, messenger
Integrations
Connect your App to Multiple Messaging Channels with the W3C Open standard.
Stars: ✭ 721 (+273.58%)
Mutual labels:  telegram, messenger
dark
🌛 Dark themes / mode for Rambox, Franz or Ferdi messaging services
Stars: ✭ 93 (-51.81%)
Mutual labels:  telegram, messenger
messaging-apis
Messaging APIs for multi-platform
Stars: ✭ 1,759 (+811.4%)
Mutual labels:  telegram, messenger
Treact
📢 Telegram React application (TDLIB VERSION IS BEING WORKED ON!)
Stars: ✭ 110 (-43.01%)
Mutual labels:  telegram, messenger
Magento Chatbot
Magento Chatbot Integration with Telegram, Messenger, Whatsapp, WeChat, Skype and wit.ai.
Stars: ✭ 149 (-22.8%)
Mutual labels:  telegram, messenger

node-telegram-bot-api-tutorial

This is a beginners' guide for node-telegram-bot-api .

Creating new bot with BotFather

The following steps describe how to create a new bot:

  • Contact @BotFather in your Telegram messenger
  • To get a token, send BotFather a message that says /newbot
  • When asked for a name for your new bot choose something that ends with the word bot. For example, my_test_bot
  • If your chosen name is available, BotFather will send you a token
  • Save the token

Once your bot is created, you can set a Description for it. Description is a message in middle of the page usually describing what the bot can do.

To set Description for your bot in BotFather do the following:

  • Send /setdescription to BotFather
  • Select the bot for which you are writing a Description
  • Change the description and send it to BotFather

There are some other useful methods in BotFather which we won't cover in this tutorial like /setcommands and other.

First message

Ok now you're ready to go. Create a node project and install bot-api:

npm install --save node-telegram-bot-api

Create a file index.js (or any other name) and inside the file require node-telegram-bot-api:

const TelegramBot = require('node-telegram-bot-api');

  Then you need to assign your token which you got from BotFather:

const token = 'YOUR_TELEGRAM_BOT_TOKEN';

And now create a new bot :

const bot = new TelegramBot(token, {polling: true});

Let's try out our bot and do some real world things. We need to get messages that user sends us , to do so we would use following code:

bot.on('message', (msg) => {
    
     //anything
     
});

Let's create simple greeting here. Here's big picture of our code :

const TelegramBot = require('node-telegram-bot-api'); 
const token = 'YOUR_TELEGRAM_BOT_TOKEN';
const bot = new TelegramBot(token, {polling: true});
    
bot.on('message', (msg) => {
    
  //anything
     
});

We were trying to greet and we'll do it here:

bot.on('message', (msg) => {
    
var Hi = "hi";
if (msg.text.toString().toLowerCase().indexOf(Hi) === 0) {
bot.sendMessage(msg.chat.id,"Hello dear user");
} 
    
});

Ok , now open up your command prompt and type:

node index.js

Go to your bot and hit on /start and then type "Hi" to it:

So now that you know how to send and receive messages in your bot you may want to put some salt on it:

bot.on('message', (msg) => {

var hi = "hi";
if (msg.text.toString().toLowerCase().indexOf(hi) === 0) {
bot.sendMessage(msg.chat.id,"Hello dear user");
} 
    
var bye = "bye";
if (msg.text.toString().toLowerCase().includes(bye)) {
bot.sendMessage(msg.chat.id, "Hope to see you around again , Bye");
} 

});

This time we're using "includes" method so if user sends us anything containing "bye" word we'll send him back the message:

And definitely you can use any other string method that you want.

Commands

That's really common to send user a message describing use of bot while he taps on "/start". (these are called commands) To do so :

bot.onText(/\/start/, (msg) => {

bot.sendMessage(msg.chat.id, "Welcome");
    
});

Let's create another command that will send a picture to user:

bot.onText(/\/sendpic/, (msg) => {

bot.sendPhoto(msg.chat.id,"https://www.somesite.com/image.jpg" );
    
});

So now if you write "/sendpic" on your bot an image will be sent. Sending audios is same and simple you can use "sendAudio" method .

Now you might have seen some pictures containing caption with them like the following picture.

Well , How to to create these? Answer is really simple you can send a caption with option on photo like so :

bot.onText(/\/sendpic/, (msg) => {

bot.sendPhoto(msg.chat.id,"https://www.somesite.com/image.jpg",{caption : "Here we go ! \nThis is just a caption "} );
    
});

So now you know how to create captions and how to go to new line in your messages by typing \n .

Keyboards

Let's go a step further and start working with keyboards. keyboards are actually the ones shown in this picture:

Keyboards are nothing but an easy way to send messages. It's like your not forcing users to write something down and send it to bot but instead your demonstrating them some options that they can tap on and a message will be sent after that. So let's see how we can create Keyboards , we'll send a Keyboard on "/start" message:

bot.onText(/\/start/, (msg) => {
    
bot.sendMessage(msg.chat.id, "Welcome", {
"reply_markup": {
    "keyboard": [["Sample text", "Second sample"],   ["Keyboard"], ["I'm robot"]]
    }
});
    
});

So now if you run you will see:

As I said in fact Keyboards are not nothing but automatic type and send for user. There is no difference if you write "I'm robot" and sending on your own or you click on Keyboard. Let's do something simple when that "I'm robot" is received.So add this up to your previous on message:

bot.on('message', (msg) => {
var Hi = "hi";
if (msg.text.toString().toLowerCase().indexOf(Hi) === 0) {
    bot.sendMessage(msg.chat.id, "Hello dear user");
}
var bye = "bye";
if (msg.text.toString().toLowerCase().includes(bye)) {
    bot.sendMessage(msg.chat.id, "Hope to see you around again , Bye");
}    
var robot = "I'm robot";
if (msg.text.indexOf(robot) === 0) {
    bot.sendMessage(msg.chat.id, "Yes I'm robot but not in that way!");
}
});

So now if you go to your bot tap on start you see Keyboards and if you tap on I'm robot you'll see the message. Note that there is no difference if you type it or you send it by Keyboards.

User

node-telegram-bot-api does not have any method to get users information but in case if you want to, you can get information like so:

var Hi = "hi";
if (msg.text.toString().toLowerCase().indexOf(Hi) === 0) {
    bot.sendMessage(msg.from.id, "Hello  " + msg.from.first_name);
}

And if you wanted to get user profile pictures you can use getUserProfilePhotos .

Inline Keybords

This section is under construction...

parse_mode

If you want to send messages with some style there, here is how it goes. parse_mode defines how you want you message to be rendered.You can define it inside in your options when sending message. Available option are HTML and Markdown.Let's see how it works in action:

bot.on('message', (msg) => {

 var Hi = "hi";
 if (msg.text.toString().toLowerCase().indexOf(Hi) === 0) {
   bot.sendMessage(msg.chat.id,"<b>bold</b> \n <i>italic</i> \n <em>italic with em</em> \n <a href=\"http://www.example.com/\">inline URL</a> \n <code>inline fixed-width code</code> \n <pre>pre-formatted fixed-width code block</pre>" ,{parse_mode : "HTML"});
   }
});

So you get idea where parse_mode is defined.Now if we run this:

So that's how we do it with Html you can also write with Markdown.As mentioned in official api of Telegram only these tags are supported till now:

<b>bold</b>, <strong>bold</strong>
<i>italic</i>, <em>italic</em>
<a href="http://www.example.com/">inline URL</a>
<code>inline fixed-width code</code>
<pre>pre-formatted fixed-width code block</pre>

And for Markdown you can only use:

*bold text*
_italic text_
[text](http://www.example.com/)
`inline fixed-width code`

Location and Number

There are some methods that enable you to send users location.
Here is an example:

bot.on('message', (msg) => {
    var location = "location";
    if (msg.text.indexOf(location) === 0) {
        bot.sendLocation(msg.chat.id,44.97108, -104.27719);
        bot.sendMessage(msg.chat.id, "Here is the point");

    }
});

And there is also sendVenue.
To send a phone number you can use sendContact.

Interacting with groups and channels

One interesting use of bots is in groups and channels.You can use bots to manage groups , receiving users messages and sending group messages. You can even send keyboards to members so that they can use the bot easier.
For better understanding of how bots can be useful in groups let's create one and add it to a group.
So we want to create a bot that says "Have a nice day Username" when any member of group said something containing "Bye" keyword. Before doing anything you have to know that a bot has no accessibility to users messages unless we add it as of a administrator. And if don't do that bot will only has access to Commands that any user sends to group.And all of this is because of the privacy policy that Telegram messenger follows which I think is right. So let's get back to creating that bot , actually we don't have to do anything different than creating bot for a single user usage , everything is similar.

bot.on('message', (msg) => {
    
var bye = "bye";
if (msg.text.toString().toLowerCase().includes(bye)) {
bot.sendMessage(msg.chat.id, "Have a nice day " + msg.from.first_name); 
} 

});

Now that we wrote codes go ahead and add this bot to a group , after adding it set it as of a administrator of the group so that it could get users messages.
Now say something that includes "bye":

Now let's do another thing , write some codes that bot will remove a person from group if they say a specific word.For instance you can create a bot that will remove member if they curse in group.
Here we will write codes that if someone says anything containing "idiot" bot will remove that person from group.

bot.on('message', (msg) => {
    
var what = "idiot";
if (msg.text.includes(what)) {
bot.kickChatMember(msg.chat.id,  msg.from.id);
}    

});

Here we have used kickChatMember method to remove a member it receives two parameters , first one is id of chat and second one is id of user which you want to remove.Now if you add this bot among admins of a group and somebody says something containing "idiot":

We can't cover all methods there are some other methods related to groups and channels: getChat , getChatAdministrators , getChatMembersCount , getChatMember , leaveChat

Contributing

  • If you found any typo or grammatically wrong sentence you can just make a PR.(In case you were not interested to, you can open an issue.)
  • If you have anything in mind that can improve this tutorial please make a PR.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].