messages.SendReaction
React to message
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.SendReaction({
peer: "username",
msgId: 43,
big: true,
reaction: "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.Updates = await client.invoke(
new Api.messages.SendReaction({
peer: "username",
msgId: 43,
big: true,
reaction: "some string here",
})
);
console.log(result); // prints the result
})();
Parameters
Name | Type | Description |
---|---|---|
flags | # | Flags, see TL conditional fields |
big | flags.1?true | Whether a bigger and longer reaction should be shown |
peer | InputPeer | Peer |
msgId | int | Message ID to react to |
reaction | flags.0?string | Reaction (a UTF8 emoji) |
Result
Possible errors
Code | Type | Description |
---|---|---|
400 | CHANNEL_PRIVATE | You haven't joined this channel/supergroup. |
400 | MESSAGE_ID_INVALID | The provided message id is invalid. |
400 | MESSAGE_NOT_MODIFIED | The provided message data is identical to the previous message data, the message wasn't modified. |
400 | PEER_ID_INVALID | The provided peer id is invalid. |
400 | REACTION_EMPTY | Empty reaction provided. |
400 | REACTION_INVALID | The specified reaction is invalid. |
Can bots use this method?
No