mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-15 02:56:57 +01:00
47 lines
1.2 KiB
Markdown
47 lines
1.2 KiB
Markdown
|
---
|
||
|
title: migrateGroupChatToChannelChat
|
||
|
description: Creates new channel supergroup chat from existing group chat and send corresponding messageChatMigrateTo and messageChatMigrateFrom. Deactivates group
|
||
|
---
|
||
|
## Method: migrateGroupChatToChannelChat
|
||
|
[Back to methods index](index.md)
|
||
|
|
||
|
|
||
|
Creates new channel supergroup chat from existing group chat and send corresponding messageChatMigrateTo and messageChatMigrateFrom. Deactivates group
|
||
|
|
||
|
### Params:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|:-------------:|:--------:|------------:|
|
||
|
|chat\_id|[long](../types/long.md) | Yes|Group chat identifier|
|
||
|
|
||
|
|
||
|
### Return type: [Chat](../types/Chat.md)
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
|
||
|
```
|
||
|
$MadelineProto = new \danog\MadelineProto\API();
|
||
|
if (isset($token)) {
|
||
|
$this->bot_login($token);
|
||
|
}
|
||
|
if (isset($number)) {
|
||
|
$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->migrateGroupChatToChannelChat(['chat_id' => long, ]);
|
||
|
```
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```
|
||
|
Chat = migrateGroupChatToChannelChat({chat_id=long, })
|
||
|
```
|
||
|
|