易用
grammY 使创建 Telegram Bot 变得如此简单!
bot 是用 Type
npm install grammy
并粘贴以下代码:
import { Bot } from "grammy";
const bot = new Bot(""); // <-- 把你的 bot token 放在 "" 之间 (https://t.me/BotFather)
// 用"你好!"来回复任意信息
bot.on("message", (ctx) => ctx.reply("你好!"));
bot.start();
const { Bot } = require("grammy");
const bot = new Bot(""); // <-- 把你的 bot token 放在 "" 之间 (https://t.me/BotFather)
// 用"你好!"来回复任意信息
bot.on("message", (ctx) => ctx.reply("你好!"));
bot.start();
import { Bot } from "https://deno.land/x/grammy@v1.30.0/mod.ts";
const bot = new Bot(""); // <-- 把你的 bot token 放在 "" 之间 (https://t.me/BotFather)
// 用"你好!"来回复任意信息
bot.on("message", (ctx) => ctx.reply("你好!"));
bot.start();
运行成功! 🎉