Method: messages.setTyping
Sends a current user typing event (see SendMessageAction for all event types) to a conversation partner or group.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | Target user or group | Optional |
top_msg_id | int | Topic ID | Optional |
action | SendMessageAction | Type of action | Yes |
Return type: Bool
Can bots use this method: YES
MadelineProto Example (now async for huge speed and parallelism!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Bool = $MadelineProto->messages->setTyping(peer: $InputPeer, top_msg_id: $int, action: $SendMessageAction, );