Я пробую API бота из телеграммы и использую для него обертку python-telegram-bot
. В настоящее время мой бот может вести себя должным образом при непосредственном инициировании разговора с ботом. Однако при использовании бота в группе или просто упоминании бота в обычном чате с другим человеком бот, похоже, вообще не видит сообщения.
Используя телеграмму botFather, у меня включено join to groups
, Я пробовал включать и отключать inline mode
(не влияет на эту проблему).
У меня есть такой код: (Код адаптирован из примеров basi c wiki )
# Imports
from telegram import InlineQueryResultArticle, ParseMode, \
InputTextMessageContent
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters, InlineQueryHandler, Handler, ConversationHandler, CallbackQueryHandler
from telegram.utils.helpers import escape_markdown
from telegram import MessageEntity, ChatAction
# functions
def start(update, context):
"""Send a message when the command /start is issued."""
update.message.reply_text('Let\'s start')
def help(update, context):
"""Send a message when the command /help is issued."""
update.message.reply_text('Help!')
def error(update, context):
"""Log Errors caused by Updates."""
logger.warning('Update "%s" caused error "%s"', update, context.error)
def process(update, context):
print(f'got this ==> {update.message.text}')
query = update.message.text
output = "Some output here"
update.message.reply_text(output)
def run_bot():
# Create the Updater and pass it your bot's token.
# Make sure to set use_context=True to use the new context based callbacks
# Post version 12 this will no longer be necessary
updater = Updater("TOKEN_HERE", use_context=True)
# Get the dispatcher to register handlers
dp = updater.dispatcher
# on different commands - answer in Telegram
dp.add_handler(CommandHandler("start", start))
dp.add_handler(CommandHandler("help", help))
# on noncommand i.e message
dp.add_handler(MessageHandler(Filters.text & (~Filters.command), process))
# log all errors
dp.add_error_handler(error)
# Start the Bot
updater.start_polling()
# Block until the user presses Ctrl-C or the process receives SIGINT,
# SIGTERM or SIGABRT. This should be used most of the time, since
# start_polling() is non-blocking and will stop the bot gracefully.
updater.idle()
, а затем я просто запускаю run_bot()
.