messages.SetBotCallbackAnswer
Set the callback answer to a user button press (bots only)
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.messages.SetBotCallbackAnswer({
queryId: BigInt("-4156887774564"),
cacheTime: 43,
alert: true,
message: "Hello there!",
url: "some string here",
})
);
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.Bool = await client.invoke(
new Api.messages.SetBotCallbackAnswer({
queryId: BigInt("-4156887774564"),
cacheTime: 43,
alert: true,
message: "Hello there!",
url: "some string here",
})
);
console.log(result); // prints the result
})();
Parameters
Name | Type | Description |
---|---|---|
flags | # | Flags, see TL conditional fields |
alert | flags.1?true | Whether to show the message as a popup instead of a toast notification |
queryId | long | Query ID |
message | flags.0?string | Popup to show |
url | flags.2?string | URL to open |
cacheTime | int | Cache validity |
Result
Possible errors
Code | Type | Description |
---|---|---|
400 | MESSAGE_TOO_LONG | The provided message is too long. |
400 | QUERY_ID_INVALID | The query ID is invalid. |
400 | URL_INVALID | Invalid URL provided. |
Can bots use this method?
Yes