Reputation: 46
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
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