1.0 KiB
1.0 KiB
title | description | image |
---|---|---|
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 |
Method: channels.getGroupsForDiscussion
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({})