Link Search Menu Expand Document

Method: messages.sendEncryptedService

Back to methods index

Sends a service message to a secret chat.

Parameters:

NameTypeDescriptionRequired
peerSecret chat ID, Update, EncryptedMessage or InputEncryptedChatSecret chat IDYes
databytesTL-serialization of DecryptedMessage type, encrypted with a key generated during chat initializationYes

Return type: messages.SentEncryptedMessage

Can bots use this method: NO

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

$messages_SentEncryptedMessage = $MadelineProto->messages->sendEncryptedService(peer: $InputEncryptedChat, data: 'bytes', );