1.3 KiB
1.3 KiB
title | description | image | redirect_from |
---|---|---|---|
messages.searchGifs | Search for GIFs | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/methods/messages_searchGifs.html |
Method: messages.searchGifs
Search for GIFs
Parameters:
Name | Type | Description | Required |
---|---|---|---|
q | string | Text query | Yes |
offset | int | Offset for pagination ยป | Yes |
Return type: messages.FoundGifs
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.FoundGifs = $MadelineProto->messages->searchGifs(['q' => 'string', 'offset' => int, ]);
Or, if you're into Lua:
messages.FoundGifs = messages.searchGifs({q='string', offset=int, })
Errors
Code | Type | Description |
---|---|---|
400 | SEARCH_QUERY_EMPTY | The search query is empty |