MadelineProto/docs/TD_docs/methods/createNewChannelChat.md

49 lines
1.4 KiB
Markdown

---
title: createNewChannelChat
description: Creates new channel chat and send corresponding messageChannelChatCreate, returns created chat
---
## Method: createNewChannelChat
[Back to methods index](index.md)
Creates new channel chat and send corresponding messageChannelChatCreate, returns created chat
### Params:
| Name | Type | Required | Description |
|----------|:-------------:|:--------:|------------:|
|title|[string](../types/string.md) | Yes|Title of new channel chat, 0-255 characters|
|is\_supergroup|[Bool](../types/Bool.md) | Yes|True, if supergroup chat should be created|
|about|[string](../types/string.md) | Yes|Information about the channel, 0-255 characters|
### Return type: [Chat](../types/Chat.md)
### 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, })
```