1.4 KiB
1.4 KiB
title | description | image |
---|---|---|
channels.editCreator | Edit creator of channel | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: channels.editCreator
Edit creator of channel
Parameters:
Name | Type | Description | Required |
---|---|---|---|
channel | Username, chat ID, Update, Message or InputChannel | Channel | Optional |
user_id | Username, chat ID, Update, Message or InputUser | User ID | Optional |
password | InputCheckPasswordSRP | Password | Yes |
Return type: Updates
Can bots use this method: NO
MadelineProto Example (now async for huge speed and parallelism!):
if (!file_exists('madeline.php')) {
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';
$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();
$Updates = $MadelineProto->channels->editCreator(['channel' => InputChannel, 'user_id' => InputUser, 'password' => InputCheckPasswordSRP, ]);
Or, if you're into Lua:
Updates = channels.editCreator({channel=InputChannel, user_id=InputUser, password=InputCheckPasswordSRP, })