Closed mikelpr closed 2 years ago
Feature Request
I have:
A way to batch multiple message edits in one call, to avoid hitting API limits so easily
bot.editMessageText([ {text1, {message_id_1, chat_id}}, {text2, {message_id_2, chat_id}}, {text3, {message_id_3, chat_id}}, {text4, {message_id_4, chat_id}}, ])
Question
is this limited by telegram's API and therefore impossible?
Hello!
This is not allowed by the Telegram API
You could look into https://github.com/gochomugo/tgfancy, maybe fork and update it and use with Promise.all
I have:
Introduction
A way to batch multiple message edits in one call, to avoid hitting API limits so easily
Example
is this limited by telegram's API and therefore impossible?