1.6 KiB
1.6 KiB
title | description | image | redirect_from |
---|---|---|---|
messages.getSearchCounters | Get the number of results that would be found by a [messages.search](../methods/messages.search.md) call with the same parameters | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/messages_getSearchCounters.html |
Method: messages.getSearchCounters
Get the number of results that would be found by a messages.search call with the same parameters
Parameters:
Name | Type | Description | Required |
---|---|---|---|
peer | Username, chat ID, Update, Message or InputPeer | Peer where to search | Optional |
filters | Array of MessagesFilter | Filters | Yes |
Return type: Vector_of_messages.SearchCounter
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();
$Vector_of_messages.SearchCounter = $MadelineProto->messages->getSearchCounters(['peer' => InputPeer, 'filters' => [MessagesFilter, MessagesFilter], ]);
Or, if you're into Lua:
Vector_of_messages.SearchCounter = messages.getSearchCounters({peer=InputPeer, filters={MessagesFilter}, })