我想實現的東西「看起來像」在我的電報機器人動畫倒計時:如何使用PyTelegrambotAPI實現倒數計時器?
sent=bot.send_message(message.chat.id,'5')
time.sleep(1)
bot.edit_message_text('4',message.chat.id,sent.message_id)
time.sleep(1)
bot.edit_message_text('3',message.chat.id,sent.message_id)
time.sleep(1)
bot.edit_message_text('2',message.chat.id,sent.message_id)
time.sleep(1)
bot.edit_message_text('1',message.chat.id,sent.message_id)
time.sleep(1)
bot.edit_message_text('0',message.chat.id,sent.message_id)
有時它工作得很好,但有時我得到的錯誤:
A request to the Telegram API was unsuccessful. The server returned HTTP 400 Bad Request. Response body:error_code:400,description:"Bad Request: message is not modified
衆所周知的問題,看看[這個問題](https://stackoverflow.com/questions/41373752/telegram-bot-api-error-when-try-to-edit-message-bad-請求消息未找到) – anatol
我有「消息未修改」而不是「未找到消息」 - 這是一個不同的問題 – Ilya
沒有像你可以假設的那麼不同 - 只是從描述的角度。我的意思是編輯信息問題的共同點。這經常發生,很少解決。 – anatol