MediaWiki API ヘルプ

このページは自動生成された MediaWiki API の説明文書ページです。

説明文書と例: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page

action=voteny

(main | voteny)
  • このモジュールは読み取りの権限を必要とします。
  • このモジュールは書き込みの権限を必要とします。
  • このモジュールは POST リクエストのみを受け付けます。
  • ソース: VoteNY
  • ライセンス: GPL-2.0-or-later

VoteNY API module

パラメーター:
その他一般パラメーターが利用可能です。
what

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

この変数は必須です。
pageId

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

この変数は必須です。
型: 整数
voteValue

Numerical vote value between 1 and 5

型: 整数
type

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

token

action=query&meta=tokens から取得した「csrf」トークン

この変数は必須です。
例:
Cast a vote for the page which has the ID number 666
api.php?action=voteny&what=vote&pageId=666 [サンドボックスで開く]
Delete your vote from the page which has the ID number 666
api.php?action=voteny&what=delete&pageId=666 [サンドボックスで開く]
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 [サンドボックスで開く]
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 [サンドボックスで開く]
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 [サンドボックスで開く]