Telethon/readthedocs/extra/examples/bots.rst

72 lines
1.7 KiB
ReStructuredText
Raw Normal View History

====
2017-11-20 07:12:31 +03:00
Bots
====
2017-11-20 07:12:31 +03:00
.. note::
These examples assume you have read :ref:`accessing-the-full-api`.
2017-11-20 07:12:31 +03:00
Talking to Inline Bots
**********************
2017-11-20 07:12:31 +03:00
You can query an inline bot, such as `@VoteBot`__ (note, *query*,
not *interact* with a voting message), by making use of the
:tl:`GetInlineBotResultsRequest` request:
2017-11-20 07:12:31 +03:00
.. code-block:: python
2017-11-20 07:12:31 +03:00
from telethon.tl.functions.messages import GetInlineBotResultsRequest
2017-11-20 07:12:31 +03:00
2018-06-25 22:14:58 +03:00
bot_results = client(GetInlineBotResultsRequest(
bot, user_or_chat, 'query', ''
2018-06-25 22:14:58 +03:00
))
2017-11-20 07:12:31 +03:00
And you can select any of their results by using
:tl:`SendInlineBotResultRequest`:
2017-11-20 07:12:31 +03:00
.. code-block:: python
2017-11-20 07:12:31 +03:00
from telethon.tl.functions.messages import SendInlineBotResultRequest
2017-11-20 07:12:31 +03:00
2018-06-25 22:14:58 +03:00
client(SendInlineBotResultRequest(
get_input_peer(user_or_chat),
obtained_query_id,
obtained_str_id
2018-06-25 22:14:58 +03:00
))
2017-11-20 07:12:31 +03:00
Talking to Bots with special reply markup
*****************************************
2017-11-20 07:12:31 +03:00
2018-06-22 15:44:59 +03:00
Generally, you just use the `message.click()
<telethon.tl.custom.message.Message.click>` method:
.. code-block:: python
2018-06-25 22:14:58 +03:00
messages = client.get_messages('somebot')
messages[0].click(0)
2018-06-22 15:44:59 +03:00
You can also do it manually.
2017-11-20 07:12:31 +03:00
To interact with a message that has a special reply markup, such as
`@VoteBot`__ polls, you would use :tl:`GetBotCallbackAnswerRequest`:
2017-11-20 07:12:31 +03:00
.. code-block:: python
2017-11-20 07:12:31 +03:00
from telethon.tl.functions.messages import GetBotCallbackAnswerRequest
2017-11-20 07:12:31 +03:00
2018-06-25 22:14:58 +03:00
client(GetBotCallbackAnswerRequest(
user_or_chat,
msg.id,
data=msg.reply_markup.rows[wanted_row].buttons[wanted_button].data
2018-06-25 22:14:58 +03:00
))
2017-11-20 07:12:31 +03:00
It's a bit verbose, but it has all the information you would need to
2017-11-20 07:12:31 +03:00
show it visually (button rows, and buttons within each row, each with
its own data).
__ https://t.me/vote
__ https://t.me/vote