Link Search Menu Expand Document

Method: auth.signUp

Back to methods index

You cannot use this method directly, use the completeSignup method instead (see https://docs.madelineproto.xyz for more info)

Parameters:

NameTypeDescriptionRequired
no_joined_notificationsBoolOptional
phone_numberstringPhone number in the international formatOptional
phone_code_hashstringSMS-message IDOptional
first_namestringNew user first nameOptional
last_namestringNew user last nameOptional

Return type: auth.Authorization

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();

$auth_Authorization = $MadelineProto->auth->signUp(no_joined_notifications: $Bool, phone_number: 'string', phone_code_hash: 'string', first_name: 'string', last_name: 'string', );