981 B
981 B
title | description | image |
---|---|---|
messages.createChannel | Create channel | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: messages.createChannel
Create channel
Parameters:
Name | Type | Description | Required |
---|---|---|---|
title | string | Channel/supergroup title | Yes |
Return type: Updates
Can bots use this method: YES
MadelineProto Example:
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
define('MADELINE_BRANCH', '');
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Updates = $MadelineProto->messages->createChannel(['title' => 'string', ]);
Or, if you're into Lua:
Updates = messages.createChannel({title='string', })