0

enter image description hereI want a little bot information to be posted on the chat window, when a user opens up the chat window, and after typing /start that information disappears. How do I do that?

Tibebes. M
  • 6,940
  • 5
  • 15
  • 36

1 Answers1

4

The text displayed before you start chatting with a bot is the Bot's description


Use the @botFather to change the description for your bot:

  • /setdescription
  • /mybots
    1. Click desired bot
    2. Edit Description
    3. Send your description as a text message

Screenshot


This will then show up if you start chatting with the bot:

enter image description here

0stone0
  • 34,288
  • 4
  • 39
  • 64
  • How do I do it using Python? – Neha Deshpande Jun 13 '20 at 19:41
  • @NehaDeshpande That was not clear from your question. However, there has already been questions here about automating BotFather conversation, like [here](https://stackoverflow.com/questions/41209343/how-to-create-a-bot-with-in-telegram-with-botfather-and-using-only-a-code) or [here](https://stackoverflow.com/questions/37231451/automate-setcommands). There should be some with code examples, but can't find them real quick. – 0stone0 Jun 13 '20 at 19:51
  • you can also [check my answer here](https://stackoverflow.com/a/62214083/11984670) or [here](https://stackoverflow.com/a/61466182/11984670) for an sample implementations with python – Tibebes. M Jun 13 '20 at 19:57