我正在努力避免电报错误。此错误发生在未修改消息时:
telegram.error.BadRequest: Message is not modified
我想做一个功能,当这个错误发生时打印一条消息,而不是打印原始的错误消息电报。我试过这样的东西,但不起作用:
def error_callback(bot, update, error):
try:
raise error
except BadRequest:
# handle malformed requests - read more below!
print('Same message')
首先,如果没有明显的错误,如果用户点击按钮过快,可能会发生此错误。在这种情况下,它很容易被忽略
假设您正在使用python电报bot库查看您的代码,您可以遵循两种方法:
1.全局忽略错误:
def error(bot, update, error):
if not (error.message == "Message is not modified"):
logger.warning('Update "%s" caused error "%s"' % (update, error))
但你仍然会在控制台上收到:
2017-11-03 17:16:41,405 - telegram.ext.dispatcher - WARNING - A TelegramError was raised while processing the Update
你唯一能做的就是为任何类型的错误禁用字符串这样做:
updater.dispatcher.logger.addFilter((lambda s: not s.msg.endswith('A TelegramError was raised while processing the Update')))
在您的main()中。信用
2.忽略您正在调用的方法中的错误:
你可以忽略你正在调用的方法中的错误:
try:
# the method causing the error
except TelegramError as e:
if str(e) != "Message is not modified": print(e)
第二种方法将完全忽略控制台上的错误,而不修改错误回调函数,但您必须在导致该异常的每个方法中使用它。
打印"文本"而不是忽略:
我建议你忽略这个错误,但如果你想像你说的那样打印字符串:你可以很容易地修改这两种方法来打印字符串。
第一种方法的示例:
def error(bot, update, error):
if error.message == "Message is not modified":
# print your string
return
logger.warning('Update "%s" caused error "%s"' % (update, error))
第二种方法示例:
try:
# the method causing the error
except TelegramError as e:
if str(e) == "Message is not modified": print(your_string)