Telegram 机器人可以在频道上创建调查吗?

Can a Telegram bot create a survey on a channel?

我希望允许 TG 频道的成员生成他们自己的调查,并让机器人 post 将这些调查发送到频道。这可能吗?

作为对此的扩展,是否可以在频道本身上获得调查 public 的结果(投票,而不是身份),是否可以将结果保密并仅与通过回复机器人消息设想调查的用户。

谢谢

是的,你可以。

您可以使用 native polls. The user could send the questions to the bot private chat in a some format (you choose that) and the bot would send it to your channel in the native poll form. Here the documentation: https://core.telegram.org/bots/api#poll

在本机投票中,您无法隐藏结果,它们以百分比显示,但您可以从 PollOption 对象中的 voter_count 获取每个选项的票数,并将它们发送到频道 (public) 或给用户(私人)。这里的文档:https://core.telegram.org/bots/api#polloption