InvokeWithLayer
Invoke the specified query using the specified API layer
Example
const { Api, TelegramClient } = require("telegram");
const { StringSession } = require("telegram/sessions");
const session = new StringSession(""); // You should put your string session here
const client = new TelegramClient(session, apiId, apiHash, {});
(async function run() {
await client.connect(); // This assumes you have already authenticated with .start()
const result = await client.invoke(
new Api.InvokeWithLayer({
layer: 43,
query: new Api.AnyRequest({
/*...*/
}),
})
);
console.log(result); // prints the result
})();
import { Api, TelegramClient } from "telegram";
import { StringSession } from "telegram/sessions";
const session = new StringSession(""); // You should put your string session here
const client = new TelegramClient(session, apiId, apiHash, {});
(async function run() {
await client.connect(); // This assumes you have already authenticated with .start()
const result: Api.AnyRequest = await client.invoke(
new Api.InvokeWithLayer({
layer: 43,
query: new Api.AnyRequest({
/*...*/
}),
})
);
console.log(result); // prints the result
})();
Parameters
Name | Type | Description |
---|---|---|
layer | int | The layer to use |
query | !X | The query |
Result
X
Possible errors
Code | Type | Description |
---|---|---|
400 | AUTH_BYTES_INVALID | The provided authorization is invalid. |
400 | CDN_METHOD_INVALID | You can't call this method in a CDN DC. |
403 | CHAT_WRITE_FORBIDDEN | You can't write in this chat. |
400 | CONNECTION_API_ID_INVALID | The provided API id is invalid. |
400 | INVITE_HASH_EXPIRED | The invite link has expired. |
Can bots use this method?
Yes
Related pages
Calling API Methods
Additional options for calling methods.