Shipankar Sarker
Shipankar Sarker

Reputation: 46

Voting in a poll with Telegram Bot

Is there any way to vote in a telegram poll with a bot? I tried to use telepot and python-telegram-bot. I can get poll id, chat_id, options and all the relevant data, but can not find any way to implement messages.sendVote() method described in telegram api docs.

Upvotes: 1

Views: 2212

Answers (1)

CallMeStag
CallMeStag

Reputation: 7050

messages.sendVote is a method from the Telegram API, not the Bot API. All available methods of the Bot API can be found here, which does not include voting in polls.

Upvotes: 0

Related Questions