MadelineProtoDocs/old_docs/API_docs_v81/methods/messages_getCommonChats.md
2018-07-12 20:24:55 +02:00

1.6 KiB

title description image
messages.getCommonChats Get chats in common with a user https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png

Method: messages.getCommonChats

Back to methods index

Get chats in common with a user

Parameters:

Name Type Required Description
user_id Username, chat ID, Update, Message or InputUser Optional The user
max_id int Yes The maximum chat ID to fetch
limit int Yes Number of results to fetch

Return type: messages_Chats

Can bots use this method: NO

MadelineProto Example:

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_Chats = $MadelineProto->messages->getCommonChats(['user_id' => InputUser, 'max_id' => int, 'limit' => int, ]);

PWRTelegram HTTP API example (NOT FOR MadelineProto):

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/messages.getCommonChats

Parameters:

user_id - Json encoded InputUser

max_id - Json encoded int

limit - Json encoded int

Or, if you're into Lua:

messages_Chats = messages.getCommonChats({user_id=InputUser, max_id=int, limit=int, })

Errors this method can return:

Error Description
USER_ID_INVALID The provided user ID is invalid