account.sendConfirmPhoneCode
Send confirmation code to cancel account deletion, for more info click here »
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.account.sendConfirmPhoneCode({
hash: 'random string here',
settings: new Api.CodeSettings({...}),
}));
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---
account.sendConfirmPhoneCode#1b3faa88 hash:string settings:CodeSettings = auth.SentCode;
Parameters
Name
Type
Description
Result
Possible errors
Code
Type
Description
400
HASH_INVALID
The provided hash is invalid
Can bots use this methd ?
yes
Related pages
How to reset an account if the 2FA password was forgotten.
Last updated
Was this helpful?