1.3 KiB
1.3 KiB
title | description | image |
---|---|---|
messages.report | Report a message | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: messages.report
Report a message
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | The user that sent the messages | Optional |
id | Array of int | The messages to report | Yes |
reason | ReportReason | The reason why you're sending this report | Yes |
Return type: Bool
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();
$Bool = $MadelineProto->messages->report(['peer' => InputPeer, 'id' => [int, int], 'reason' => ReportReason, ]);
Or, if you're into Lua:
Bool = messages.report({peer=InputPeer, id={int}, reason=ReportReason, })