mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-24 10:23:44 +03:00
Let get_input_peer do its magic
parent
3623496fb9
commit
ad521b3163
|
@ -2,10 +2,9 @@ You can query an inline bot, such as [@vote](https://t.me/vote), by making use o
|
|||
|
||||
```python
|
||||
from telethon.tl.functions.messages import GetInlineBotResultsRequest
|
||||
from telethon.helpers import get_input_peer
|
||||
|
||||
bot_results = client.invoke(GetInlineBotResultsRequest(
|
||||
get_input_peer(bot), get_input_peer(user_or_chat), 'query', ''
|
||||
bot, user_or_chat, 'query', ''
|
||||
))
|
||||
```
|
||||
|
||||
|
@ -13,11 +12,9 @@ And you can reply to their results by using [`SendInlineBotResultRequest`](https
|
|||
|
||||
```python
|
||||
from telethon.tl.functions.messages import SendInlineBotResultRequest
|
||||
from telethon.utils import generate_random_long
|
||||
|
||||
client.invoke(SendInlineBotResultRequest(
|
||||
get_input_peer(user_or_chat),
|
||||
generate_random_long(),
|
||||
obtained_query_id,
|
||||
obtained_str_id
|
||||
))
|
||||
|
|
Loading…
Reference in New Issue
Block a user