2.3 KiB
2.3 KiB
title | description | image |
---|---|---|
auth.sendCode | Use phone_login instead | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png |
Method: auth.sendCode
Use phone_login instead
Parameters:
Name | Type | Description | Required |
---|---|---|---|
allow_flashcall | Bool | Use phone_login instead | Optional |
phone_number | string | Use phone_login instead | Yes |
current_number | Bool | Use phone_login instead | Optional |
api_id | int | Use phone_login instead | Yes |
api_hash | string | Use phone_login instead | Yes |
Return type: auth_SentCode
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_SentCode = $MadelineProto->auth->sendCode(['allow_flashcall' => Bool, 'phone_number' => 'string', 'current_number' => Bool, 'api_id' => int, 'api_hash' => 'string', ]);
Or, if you're into Lua:
auth_SentCode = auth.sendCode({allow_flashcall=Bool, phone_number='string', current_number=Bool, api_id=int, api_hash='string', })
Errors
Code | Type | Description |
---|---|---|
400 | API_ID_INVALID | API ID invalid |
400 | API_ID_PUBLISHED_FLOOD | This API id was published somewhere, you can't use it now |
400 | INPUT_REQUEST_TOO_LONG | The request is too big |
400 | PHONE_NUMBER_APP_SIGNUP_FORBIDDEN | You can't sign up using this app |
400 | PHONE_NUMBER_BANNED | The provided phone number is banned from telegram |
400 | PHONE_NUMBER_FLOOD | You asked for the code too many times. |
400 | PHONE_NUMBER_INVALID | The phone number is invalid |
400 | PHONE_PASSWORD_PROTECTED | This phone is password protected |
400 | SMS_CODE_CREATE_FAILED | An error occurred while creating the SMS code |
406 | PHONE_NUMBER_INVALID | The phone number is invalid |
406 | PHONE_PASSWORD_FLOOD | You have tried logging in too many times |