MediaWiki API ヘルプ
このページは自動生成された MediaWiki API の説明文書ページです。
説明文書と例: https://www.mediawiki.org/wiki/API
action=managetags
(main | managetags)
- このモジュールは読み取りの権限を必要とします。
- このモジュールは書き込みの権限を必要とします。
- このモジュールは POST リクエストのみを受け付けます。
- Source: MediaWiki
- License: GPL-2.0+
Perform management tasks relating to change tags.
パラメーター:
- operation
Which operation to perform:
- create
- Create a new change tag for manual use.
- delete
- Remove a change tag from the database, including removing the tag from all revisions, recent change entries and log entries on which it is used.
- activate
- Activate a change tag, allowing users to apply it manually.
- deactivate
- Deactivate a change tag, preventing users from applying it manually.
- このパラメーターは必須です。
- 値 (次の値のいずれか1つ): create、delete、activate、deactivate
- tag
Tag to create, delete, activate or deactivate. For tag creation, the tag must not exist. For tag deletion, the tag must exist. For tag activation, the tag must exist and not be in use by an extension. For tag deactivation, the tag must be currently active and manually defined.
- このパラメーターは必須です。
- reason
An optional reason for creating, deleting, activating or deactivating the tag.
- ignorewarnings
Whether to ignore any warnings that are issued during the operation.
- Type: boolean (details)
- token
action=query&meta=tokens から取得した「csrf」トークン
- このパラメーターは必須です。
例:
- spam という名前のタグを For use in edit patrolling という理由で作成する
- api.php?action=managetags&operation=create&tag=spam&reason=For+use+in+edit+patrolling&token=123ABC
- vandlaism タグを Misspelt という理由で削除する
- api.php?action=managetags&operation=delete&tag=vandlaism&reason=Misspelt&token=123ABC
- spam という名前のタグを For use in edit patrolling という理由で有効化する
- api.php?action=managetags&operation=activate&tag=spam&reason=For+use+in+edit+patrolling&token=123ABC
- Deactivate a tag named spam with the reason No longer required
- api.php?action=managetags&operation=deactivate&tag=spam&reason=No+longer+required&token=123ABC