1

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.

CallMeStag
  • 5,467
  • 1
  • 7
  • 22

1 Answers1

0

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.

CallMeStag
  • 5,467
  • 1
  • 7
  • 22