MediaWiki API 說明
此頁為自動產生的 MediaWiki API 說明文件頁面。
說明文件與範例:https://www.mediawiki.org/wiki/API
action=tag
(main | tag)
- 此模組需要讀取權限。
- 此模組需要寫入權限。
- 此模組僅接受 POST 請求。
Add or remove change tags from individual revisions or log entries.
參數:
- rcid
One or more recent changes IDs from which to add or remove the tag.
- 使用 | 分隔數值。 上限值為 50 (機器人為 500)。
- revid
One or more revision IDs from which to add or remove the tag.
- 使用 | 分隔數值。 上限值為 50 (機器人為 500)。
- logid
One or more log entry IDs from which to add or remove the tag.
- 使用 | 分隔數值。 上限值為 50 (機器人為 500)。
- add
Tags to add. Only manually defined tags can be added.
- 多值 (以 | 分隔):
- remove
Tags to remove. Only tags that are either manually defined or completely undefined can be removed.
- 使用 | 分隔數值。 上限值為 50 (機器人為 500)。
- reason
Reason for the change.
- 預設值:(空)
- token
自 action=query&meta=tokens 接收的 "csrf" 密鑰。
- 此參數為必填。
範例:
- Add the vandalism tag from revision ID 123 without specifying a reason
- api.php?action=tag&revid=123&add=vandalism&token=123ABC
- Remove the spam tag from log entry ID 123 with the reason Wrongly applied
- api.php?action=tag&logid=123&remove=spam&reason=Wrongly+applied&token=123ABC