bot api 是否支持创建本地投票?

Does bot api support creation of native polls?

我正在尝试让属于群组的机器人根据它收到的某些参数进行民意调查,而不是由群组的用户自己创建民意调查。这可能吗?

是的,机器人可以创建投票并将投票发送到 Telegram 中的任何地方。

参考python-telegram-bot,这可以用context.bot.send_poll(chat_id, question, options)

来完成

查看 sendPoll() 的这些文档:

Telegram Bot API Docs

python-telegram-bot Docs