get_inline_bot_results()¶
- async Client.get_inline_bot_results()¶
Get bot results via inline queries. You can then send a result using
Usable by Users Botssend_inline_bot_result()
- Parameters:
bot (
int
|str
) – Unique identifier of the inline bot you want to get results from. You can specify a @username (str) or a bot ID (int).query (
str
, optional) – Text of the query (up to 512 characters). Defaults to “” (empty string).offset (
str
, optional) – Offset of the results to be returned.latitude (
float
, optional) – Latitude of the location. Useful for location-based results only.longitude (
float
, optional) – Longitude of the location. Useful for location-based results only.
- Returns:
BotResults
– On Success.- Raises:
TimeoutError – In case the bot fails to answer within 10 seconds.
Example
results = await app.get_inline_bot_results("hydrogrambot") print(results)