1.9 KiB
1.9 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
$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);
}
$Chat = $MadelineProto->createNewChannelChat(['title' => 'string', 'is_supergroup' => Bool, 'about' => 'string', ]);
Or, if you're using the PWRTelegram HTTP API:
As a bot:
POST/GET to https://api.pwrtelegram.xyz/botTOKEN/madeline
Parameters:
- method - createNewChannelChat
- params -
{"title": "string", "is_supergroup": Bool, "about": "string", }
As a user:
POST/GET to https://api.pwrtelegram.xyz/userTOKEN/createNewChannelChat
Parameters:
title - Json encoded string is_supergroup - Json encoded Bool about - Json encoded string
Or, if you're into Lua:
Chat = createNewChannelChat({title='string', is_supergroup=Bool, about='string', })