미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
action=voteny
(main | voteny)
- 이 모듈은 read 권한을 요구합니다.
- 이 모듈은 write 권한을 요구합니다.
- 이 모듈은 POST 요청만을 허용합니다.
- 출처: VoteNY
- 라이선스: GPL-2.0-or-later
VoteNY API 모듈
특정 변수:
다른 일반 변수를 사용할 수 있습니다.
- 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
"csrf" 토큰은 action=query&meta=tokens에서 가져옵니다
- 이 변수는 필수입니다.
예시:
- 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 [연습장에서 열기]