auth.cancelCode
Cancel the login verification code
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.cancelCode({
phoneNumber: 'random string here',
phoneCodeHash: 'random string here',
}));
console.log(result); // prints the result
})();
TL schema
boolFalse#bc799737 = Bool;
boolTrue#997275b5 = Bool;
---functions---
auth.cancelCode#1f040578 phone_number:string phone_code_hash:string = Bool;
Parameters
Name
Type
Description
Result
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_NUMBER_INVALID
The phone number is invalid
Can bots use this methd ?
yes
Related pages
Send the verification code for login
Last updated
Was this helpful?