Inline Result Listener
Listens for an choosen inline result update
listen_inline_result()
Parameters
user_id(
int,optional) – Unique identifier (int) of the target user.filters (
filters, optional) – Pass one or more filters to allow only a subset of chosen inline results to be passed in your function.timeout (
int,optional) – To specify the timeout duration in seconds for a client to listen for a message.
Returns : InlineQuery
Example
await app.listen_inline_result(user_id=user_id, filters=filters, timeout=timeout)cancel_result_listener()
Parameters
user_id (
int,optional) – Unique identifier (int) of the target user.
Returns : None
Example
await app.cancel_result_listener(user_id=user_id)Last updated