mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-03 17:27:46 +01:00
995 B
995 B
title | description |
---|---|
messages.addChatUser | messages.addChatUser parameters, return type and example |
Method: messages.addChatUser
Parameters:
Name | Type | Required |
---|---|---|
chat_id | int | Required |
user_id | InputUser | Required |
fwd_limit | int | Required |
Return type: Updates
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);
}
$Updates = $MadelineProto->messages->addChatUser(['chat_id' => int, 'user_id' => InputUser, 'fwd_limit' => int, ]);