1.2 KiB
1.2 KiB
title | description |
---|---|
changeName | Changes first and last names of logged in user. If something changes, updateUser will be sent |
Method: changeName
Changes first and last names of logged in user. If something changes, updateUser will be sent
Params:
Name | Type | Required | Description |
---|---|---|---|
first_name | string | Yes | New value of user first name, 1-255 characters |
last_name | string | Yes | New value of optional user last name, 0-255 characters |
Return type: Ok
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);
}
$Ok = $MadelineProto->changeName(['first_name' => string, 'last_name' => string, ]);
Or, if you're into Lua:
Ok = changeName({first_name=string, last_name=string, })