Answer the question
In order to leave comments, you need to log in
How to remove reply to messages in telegram bot?
Hello, I am writing a telegram bot on the aiogram module. Faced such a problem that when I write a message, the bot forwards this message and replies to it, how can I remove this?
Here is the code:
import aiogram
import logging
from aiogram import Bot, Dispatcher, executor, types
API_TOKEN = 'Secret'
logging.basicConfig(level=logging.INFO)
bot = Bot(token=API_TOKEN)
dp = Dispatcher(bot)
@dp.message_handler(commands=['start'])
async def send_welcome(message: types.Message):
await message.reply("Привет.")
await message.reply('Если что можно прописать команду /help, она поможет.')
@dp.message_handler(commands=['help'])
async def send_welcome(message: types.Message):
await message.reply('Для того, чтобы начать проверку, пропиши команду "начать проверку"')
if __name__ == '__main__':
executor.start_polling(dp, skip_updates=True)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question