0

Pin a Message

by
Published Jun 6, 2022
Script telegram Verified

The script

Submitted by hugo989 Bun
Verified 6 days ago
1
import { Telegram as Telegraf } from "[email protected]";
2

3
type Telegram = {
4
  token: string;
5
};
6
export async function main(
7
  auth: Telegram,
8
  chat_id: string,
9
  message_id: number,
10
) {
11
  const client = new Telegraf(auth.token);
12
  return await client.pinChatMessage(chat_id, message_id);
13
}
14

Other submissions
  • Submitted by adam186 Deno
    Created 398 days ago
    1
    import { Telegram } from "npm:[email protected]";
    2
    
    
    3
    type Telegram = {
    4
      token: string;
    5
    };
    6
    export async function main(
    7
      auth: Telegram,
    8
      chat_id: string,
    9
      message_id: number,
    10
    ) {
    11
      const client = new Telegram(auth.token);
    12
      return await client.pinChatMessage(chat_id, message_id);
    13
    }
    14