Link Search Menu Expand Document

Method: messages.getPollVotes

Back to methods index

Get poll results for non-anonymous polls

Parameters:

NameTypeDescriptionRequired
peerUsername, chat ID, Update, Message or InputPeerChat where the poll was sentOptional
idintMessage IDOptional
optionbytesGet only results for the specified poll optionOptional
offsetstringOffset for results, taken from the next_offset field of messages.votesList, initially an empty string.
Note: if no more results are available, the method call will return an empty next_offset; thus, avoid providing the next_offset returned in messages.votesList if it is empty, to avoid an infinite loop.
Optional
limitintNumber of results to returnOptional

Return type: messages.VotesList

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$messages_VotesList = $MadelineProto->messages->getPollVotes(peer: $InputPeer, id: $int, option: 'bytes', offset: 'string', limit: $int, );