MediaWiki API 說明
此頁為自動產生的 MediaWiki API 說明文件頁面。
說明文件與範例:https://www.mediawiki.org/wiki/API
action=userrights
(main | userrights)
- 此模組需要讀取權限。
- 此模組需要寫入權限。
- 此模組僅接受 POST 請求。
更改一位使用者的群組成員。
參數:
- user
使用者名稱。
- userid
使用者 ID。
- add
加入使用者至這些群組。
- 多值 (以 | 分隔):bot、sysop、bureaucrat
- remove
從這些群組移除使用者。
- 多值 (以 | 分隔):bot、sysop、bureaucrat
- reason
變更的原因。
- 預設值:(空)
- token
自 action=query&meta=tokens 接收的 "userrights" 密鑰。
For compatibility, the token used in the web UI is also accepted.
- 此參數為必填。
範例:
- 将用户FooBot添加至bot用户组,并从sysop和bureaucrat组移除。
- api.php?action=userrights&user=FooBot&add=bot&remove=sysop|bureaucrat&token=123ABC
- 将ID为123的用户加入至机器人组,并将其从管理员和行政员组移除。
- api.php?action=userrights&userid=123&add=bot&remove=sysop|bureaucrat&token=123ABC