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

sendPoll

ارسال نظرسنجی با ربات.

ورودی‌ها

نامنوعتوضیح
chat_idstringآیدی چتی که پیام باید به آن ارسال شود.
questionstringمتن سوال
optionsstring[]لیست پاسخ ها

خروجی

فیلدنوعتوضیح
message_idstringشناسه پیام

نحوه استفاده

const { Bot } = require("rubjs");

const bot = new Bot("YOUR_TOKEN");

bot.command("/poll", async (ctx) => {
await bot.sendPoll(ctx.chat_id, "2 + 3 = ", ["1", "3", "5", "2"]);
});

bot.run();