MadelineProtoDocs/docs/API_docs/methods/messages.setTyping.md
2024-05-01 14:53:46 +02:00

1.6 KiB

title description grand_parent parent image redirect_from
messages.setTyping Sends a current user typing event (see [SendMessageAction](../types/SendMessageAction.html) for all event types) to a conversation partner or group. Telegram RPC API Methods https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/messages_setTyping.html

Method: messages.setTyping

Back to methods index

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, );