MediaWiki API ヘルプ
このページは自動生成された MediaWiki API の説明文書ページです。
説明文書と例: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
action=userrights
(main | userrights)
- このモジュールは読み取りの権限を必要とします。
- このモジュールは書き込みの権限を必要とします。
- このモジュールは POST リクエストのみを受け付けます。
- ソース: MediaWiki
- ライセンス: GPL-2.0-or-later
利用者の所属グループを変更します。
パラメーター:
- user
利用者。
- 型: 利用者名 および 利用者ID(例: #12345)のいずれかを使った利用者
- userid
- 廃止予定です。
代わりに user=#ID を指定してください。
- 型: 整数
- add
利用者をこのグループに追加するか、既にメンバーの場合は、そのグループのメンバーシップの有効期限を更新します。
- 値 (| または別の文字列で区切る): Editorial_department、Extended-auto-Approved-Users、Verified-Vivaldi_User、block-newpage、bot、checkuser、interface-admin、push-subscription-manager、sysop
- expiry
Expiry timestamps. May be relative (e.g. 5 months or 2 weeks) or absolute (e.g. 2014-09-18T12:34:56Z). If only one timestamp is set, it will be used for all groups passed to the add parameter. Use infinite, indefinite, infinity, or never for a never-expiring user group.
- 複数の値は | もしくは代わりの文字で区切ってください。
- 値の最大値は 50(緩い制限が適用されるクライアントでは500)です。
- 既定: infinite
- remove
Remove the user from these groups.
- 値 (| または別の文字列で区切る): Editorial_department、Extended-auto-Approved-Users、Verified-Vivaldi_User、block-newpage、bot、checkuser、interface-admin、push-subscription-manager、sysop
- reason
変更の理由。
- 既定値: (空)
- token
action=query&meta=tokens から取得した「userrights」トークン
互換性のために、ウェブUIで使用されるトークンも受理されます。
- この変数は必須です。
- tags
Change tags to apply to the entry in the user rights log.
- 値 (| または別の文字列で区切る):
例:
- Add user FooBot to group bot, and remove from groups sysop and bureaucrat.
- api.php?action=userrights&user=FooBot&add=bot&remove=sysop|bureaucrat&token=123ABC [サンドボックスで開く]
- Add the user with ID 123 to group bot, and remove from groups sysop and bureaucrat.
- api.php?action=userrights&userid=123&add=bot&remove=sysop|bureaucrat&token=123ABC [サンドボックスで開く]
- 利用者 SometimeSysop を 1ヶ月間 sysop グループに追加する。
- api.php?action=userrights&user=SometimeSysop&add=sysop&expiry=1%20month&token=123ABC [サンドボックスで開く]