MadelineProto/docs/TD_docs/methods/getChats.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

2.0 KiB

title description
getChats Returns list of chats in the right order, chats are sorted by (order, chat_id) in decreasing order. For example, to get list of chats from the beginning, the offset_order should be equal 2^63 - 1

Method: getChats

Back to methods index

YOU CANNOT USE THIS METHOD IN MADELINEPROTO

Returns list of chats in the right order, chats are sorted by (order, chat_id) in decreasing order. For example, to get list of chats from the beginning, the offset_order should be equal 2^63 - 1

Params:

Name Type Required Description
offset_order long Yes Chat order to return chats from
offset_chat_id long Yes Chat identifier to return chats from
limit int Yes Maximum number of chats to be returned

Return type: Chats

Example:

$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) { // Login as a bot
    $MadelineProto->bot_login($token);
}
if (isset($number)) { // Login as a user
    $sentCode = $MadelineProto->phone_login($number);
    echo 'Enter the code you received: ';
    $code = '';
    for ($x = 0; $x < $sentCode['type']['length']; $x++) {
        $code .= fgetc(STDIN);
    }
    $MadelineProto->complete_phone_login($code);
}

$Chats = $MadelineProto->getChats(['offset_order' => long, 'offset_chat_id' => long, 'limit' => int, ]);

Or, if you're using the PWRTelegram HTTP API:

As a bot:

POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline

Parameters:

  • method - getChats
  • params - {"offset_order": long, "offset_chat_id": long, "limit": int, }

As a user:

POST/GET to https://api.pwrtelegram.xyz/userTOKEN/getChats

Parameters:

offset_order - Json encoded long offset_chat_id - Json encoded long limit - Json encoded int

Or, if you're into Lua:

Chats = getChats({offset_order=long, offset_chat_id=long, limit=int, })