Как я могу получить бота, который служит администратором Telegram, для взаимодействия с другими пользователями? - PullRequest
0 голосов
/ 24 октября 2019

Я бы хотел, чтобы мои пользователи в группе, которой управляет бот, могли взаимодействовать, запрещать и даже отправлять личные сообщения. Кто-нибудь может мне помочь? Спасибо.

My initial Code:

// Code by: Tiago Ribeiro Santos - 10/23/2019
// Language: Node.JS
/ *
    Notes: The Telegram bot must send a photo msg to each user who joins the group.
    You should not repeat the welcome more than once.


* /

// Import a node Telegram bot
const TelegramBot = require ('node-telegram-bot-api');
const token = '1013923661: AAFqBLCL03lllmL1TL1-3BsnH_b72vqLrA';
const robot = new TelegramBot (token, {polling: true});

//Welcome
robot.on ('message', (msg) => {
    // If any user says hello in the group, the bot responds.
    // Convert msg to string.
    if (msg.text.toString ()) {
        //bot.sendMessage(msg.chat.id,`Hello, welcome! :): $ {msg.from.first_name} `);
        robot.sendPhoto (msg.chat.id, 'img / Welcome.jpg');
    }
});
...