0

I can't visit the message that I sent with getupdates in telegram bot

https://api.telegram.org/bot............./getupdates

how can I visit the messages that I sent with my telegram bot?

I want to show the messages that send with a bot with sendmessage method but I couldn't find it

I can find my the message_id between sent messages but I can't visit the message that bot sent

Mahesh Babariya
  • 4,560
  • 6
  • 39
  • 54

1 Answers1

0

From your question I couldn't extract in which language you are coding your telegram bot.

In node.js for example, using this package, every message you sent is automatically written to the console. If you only want to review your message that should already do the trick. If you need to store it permanently you'd need to either try to find where the console.log happens and apply your own code or save the console output to a file (like mentioned here). Later on you could for example apply a regex to filter the needed messages.

Note: If you are not using any programming language yet (and are just sending to the telegram API URLs) you have no easy possibility of reviewing your sent messages apart from intercepting the HTTP packets.

DesperateEi
  • 134
  • 3
  • 10