1.9 KiB
1.9 KiB
title | description | image | redirect_from |
---|---|---|---|
messages.searchGlobal | Search for messages and peers globally | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/messages_searchGlobal.html |
Method: messages.searchGlobal
Search for messages and peers globally
Parameters:
Name | Type | Description | Required |
---|---|---|---|
q | string | Query | Yes |
offset_date | int | 0 or the date offset | Yes |
offset_peer | Username, chat ID, Update, Message or InputPeer | Offsets for pagination, for more info click here | Optional |
offset_id | int | Offsets for pagination, for more info click here | Yes |
limit | int | Offsets for pagination, for more info click here | Yes |
Return type: messages.Messages
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.Messages = $MadelineProto->messages->searchGlobal(['q' => 'string', 'offset_date' => int, 'offset_peer' => InputPeer, 'offset_id' => int, 'limit' => int, ]);
Or, if you're into Lua:
messages.Messages = messages.searchGlobal({q='string', offset_date=int, offset_peer=InputPeer, offset_id=int, limit=int, })
Errors
Code | Type | Description |
---|---|---|
400 | SEARCH_QUERY_EMPTY | The search query is empty |