1.4 KiB
1.4 KiB
title | description |
---|---|
createNewChannelChat | Creates new channel chat and send corresponding messageChannelChatCreate, returns created chat |
Method: createNewChannelChat
YOU CANNOT USE THIS METHOD IN MADELINEPROTO
Creates new channel chat and send corresponding messageChannelChatCreate, returns created chat
Params:
Name | Type | Required | Description |
---|---|---|---|
title | string | Yes | Title of new channel chat, 0-255 characters |
is_supergroup | Bool | Yes | True, if supergroup chat should be created |
about | string | Yes | Information about the channel, 0-255 characters |
Return type: Chat
Example:
$MadelineProto = new \danog\MadelineProto\API();
if (isset($token)) { // Login as a bot
$this->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);
}
$Chat = $MadelineProto->createNewChannelChat(['title' => string, 'is_supergroup' => Bool, 'about' => string, ]);
Or, if you're into Lua:
Chat = createNewChannelChat({title=string, is_supergroup=Bool, about=string, })