Ayuda de la API de MediaWiki

Esta es una página de documentación autogenerada de la API de MediaWiki.

Documentación y ejemplos: https://www.mediawiki.org/wiki/API

action=voteny

(main | voteny)
  • Este módulo requiere permisos de lectura.
  • Este módulo requiere permisos de escritura.
  • Este módulo solo acepta solicitudes POST.
  • Fuente: VoteNY
  • Licencia: GPL-2.0-or-later

VoteNY API module

Parámetros:
what

Action to take; valid values are 'vote' (green voting box), 'multi' (voting stars) or 'delete' (delete a previously given vote)

Este parámetro es obligatorio.
pageId

Page ID of the page where the voting box/stars is/are

Este parámetro es obligatorio.
Tipo: entero
voteValue

Numerical vote value between 1 and 5

Tipo: entero
type

Set this to 'stars' to call the voting stars (VoteStars PHP class), otherwise the green vote box (Vote PHP class) is used

token

A "csrf" token retrieved from action=query&meta=tokens

Este parámetro es obligatorio.
Ejemplos:
Cast a vote for the page which has the ID number 666
api.php?action=voteny&what=vote&pageId=666 [abrir en la zona de pruebas]
Delete your vote from the page which has the ID number 666
api.php?action=voteny&what=delete&pageId=666 [abrir en la zona de pruebas]
Cast a vote (3 stars out of 5) for the page which has the ID number 666
api.php?action=voteny&what=vote&type=stars&pageId=666&voteValue=3 [abrir en la zona de pruebas]
Delete your vote from the page which has the ID number 666 which is using the star rating
api.php?action=voteny&what=delete&type=stars&pageId=666 [abrir en la zona de pruebas]
Cast a vote (4 stars out of 5) for the page which has the ID number 666, deleting your previous vote, if any
api.php?action=voteny&what=multi&type=stars&pageId=666&voteValue=4 [abrir en la zona de pruebas]