پرش به مطلب اصلی

unbanChatMember

استفاده از متد unbanChatMember برای حذف مسدود کردن کاربر از گروه یا کانال

ورودی ها

نامنوعتوضیح
chat_idstringشناسه چتی که باید کاربر در ان حذف مسدود شود
user_idstringشناسه کاربری که باید حذف مسدود شود

خروجی

  • ندارد

نحوه استفاده

import Bot from "rubika";

const bot = new Bot("YOUR_TOKEN");

bot.command("/unban", async (ctx) => {
await bot.unbanChatMember(ctx.chat_id, sender_id);
});

bot.run();