Nápověda k MediaWiki API
Toto je automaticky generovaná dokumentační stránka k MediaWiki API.
Dokumentace a příklady: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
action=pollsubmitvote
(main | pollsubmitvote)
- Tento modul vyžaduje oprávnění ke čtení.
- Tento modul vyžaduje oprávnění k zápisu.
- Tento modul přijímá pouze požadavky POST.
- Zdroj: AJAX Poll
- Licence: GFDL-1.2
Modul AJAXPoll API
Parametry:
- poll
Poll ID, such as 832A5FA2C2583A5732B90CEFF658FE25; IDs are formed by hashing the input (question + answer options, i.e. the text between
<poll>...</poll>
tags) with MD5 hashing algorithm and converting the result to UPPERCASE with PHP'sstrtoupper
function- This parameter is required.
- answer
Numerical answer option identifier; use 0 to revoke a previously cast vote
- This parameter is required.
- Type: integer
- token
Token typu „csrf“ získaný pomocí action=query&meta=tokens.
- This parameter is required.
Příklad:
- Submit the third (3) answer to the poll that has the ID 832A5FA2C2583A5732B90CEFF658FE25
- api.php?action=pollsubmitvote&poll=832A5FA2C2583A5732B90CEFF658FE25&answer=3 [otevřít v pískovišti]