1.4 KiB
1.4 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
Get chats in common with a user
Parameters:
Name | Type | Description | Required |
---|---|---|---|
user_id | Username, chat ID, Update, Message or InputUser | The user | Optional |
max_id | int | The maximum chat ID to fetch | Yes |
limit | int | Number of results to fetch | Yes |
Return type: messages_Chats
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_Chats = $MadelineProto->messages->getCommonChats(['user_id' => InputUser, 'max_id' => int, 'limit' => int, ]);
Or, if you're into Lua:
messages_Chats = messages.getCommonChats({user_id=InputUser, max_id=int, limit=int, })
Errors
Code | Type | Description |
---|---|---|
400 | USER_ID_INVALID | The provided user ID is invalid |