skip to Main Content
author
125 views
0 votes

pyTelegramBotAPI: set_message_reaction() – How do I make my Telegram bot react with a specific emoji to any message it recieves?

This is my code:
import telebot

BOT_TOKEN = '-'
bot = telebot.TeleBot(BOT_TOKEN)

@bot.message_handler(func=lambda message:True)
def thumbs_up(message):

Back To Top
Search