messages.SaveDraft
Save a message draft associated to a chat.
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.SaveDraft({
peer: "username",
message: "Hello there!",
noWebpage: true,
})
);
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.SaveDraft({
peer: "username",
message: "Hello there!",
noWebpage: true,
})
);
console.log(result); // prints the result
})();
Parameters
Name | Type | Description |
---|---|---|
flags | # | Flags, see TL conditional fields |
noWebpage | flags.1?true | Disable generation of the webpage preview |
replyToMsgId | flags.0?int | Message ID the message should reply to |
peer | InputPeer | Destination of the message that should be sent |
message | string | The draft |
entities | flags.3?Vector<MessageEntity> | Message entities for styled text |
Result
Possible errors
Code | Type | Description |
---|---|---|
400 | MSG_ID_INVALID | Invalid message ID provided. |
400 | PEER_ID_INVALID | The provided peer id is invalid. |
Can bots use this method?
No
Related pages
Styled text with message entities
How to create styled text with message entities
Message drafts
How to handle message drafts