Method: auth.reportMissingCode
Official apps only, reports that the SMS authentication code wasn’t delivered.
Parameters:
Name | Type | Description | Required |
---|---|---|---|
phone_number | string | Phone number where we were supposed to receive the code | Optional |
phone_code_hash | string | The phone code hash obtained from auth.sendCode | Optional |
mnc | string | MNC of the current network operator. | Optional |
Return type: Bool
Can userbots use this method: YES
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();
$Bool = $MadelineProto->auth->reportMissingCode(phone_number: 'string', phone_code_hash: 'string', mnc: 'string', );