MadelineProtoDocs/old_docs/API_docs_v40/methods/channels.getGroupsForDiscus...

1.1 KiB

title description image redirect_from
channels.getGroupsForDiscussion Get all groups that can be used as [discussion groups](https://telegram.org/blog/privacy-discussions-web-bots) https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png /API_docs/methods/channels_getGroupsForDiscussion.html

Method: channels.getGroupsForDiscussion

Back to methods index

Get all groups that can be used as discussion groups

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->channels->getGroupsForDiscussion();

Or, if you're into Lua:

messages.Chats = channels.getGroupsForDiscussion({})