auth.resendCode

Resend the login code via another medium, the phone code type is determined by the return value of the previous auth.sendCode/auth.resendCode: see login for more info.

Example

const {Api, TelegramClient} = require('telegram');
const {StringSession} = require('telegram/sessions');

const session = new StringSession('');
const client = new TelegramClient(session, apiId, apiHash, {});

(async function run() {
    const result = await client.invoke(new Api.auth.resendCode({
        phoneNumber: 'random string here',
        phoneCodeHash: 'random string here',
        }));
    console.log(result); // prints the result
})();

TL schema

auth.sentCode#5e002502 flags:# type:auth.SentCodeType phone_code_hash:string next_type:flags.1?auth.CodeType timeout:flags.2?int = auth.SentCode;
---functions---
auth.resendCode#3ef1a9bf phone_number:string phone_code_hash:string = auth.SentCode;

Parameters

Name

Type

Description

phone_number

The phone number

phone_code_hash

The phone code hash obtained from auth.sendCode

Result

auth.SentCode

Possible errors

Code

Type

Description

400

PHONE_CODE_EXPIRED

The phone code you provided has expired, this may happen if it was sent to any chat on telegram (if the code is sent through a telegram chat (not the official account) to avoid it append or prepend to the code some chars)

400

PHONE_CODE_HASH_EMPTY

phone_code_hash is missing

400

PHONE_NUMBER_INVALID

The phone number is invalid

Can bots use this methd ?

yes

Send the verification code for login

How to register a user's phone to start using the API.

Last updated