我创建了一个漫游器(使用python-telegram-bot
),选择了一种查询类型后,漫游器应随机选择可用字符串之一作为答复。
我创建回复的功能如下:
def generate_reply():
replies = """
Hello
Goodbye
Thanks!
Your welcome!
See you around!""".splitlines()
r = random.choice(replies).strip()
return r
回复用户的功能如下:
#Inline Reply
def inlinequery(update, context):
query = update.inline_query.query
results = [InlineQueryResultArticle(id=uuid4(), title="Interact",
input_message_content=InputTextMessageContent(
generate_reply()))]
update.inline_query.answer(results)
#Normal reply
def reply(update, context):
update.message.reply_text(generate_reply())
在创建漫游器之后,我使用以下命令将其添加到漫游器中:
dp.add_handler(CommandHandler("reply", reply))
dp.add_handler(InlineQueryHandler(inlinequery))
当我在聊天中使用/reply
时,它可以按预期工作,但是无论我在与其他用户或组的聊天中使用内联命令的地方,随机选择显然都会停止工作。如何解决这个问题?
答案 0 :(得分:1)
我找到了问题的答案。显然,Telegram将类似内联查询的答案缓存了一段时间。为了使此功能正常运行,您应该将cache_time
设置为所需的值,在我的情况下为0。
#Inline Reply
def inlinequery(update, context):
query = update.inline_query.query
results = [InlineQueryResultArticle(id=uuid4(), title="Interact",
input_message_content=InputTextMessageContent(
generate_reply()))]
update.inline_query.answer(results, cache_time=0)