MediaWiki API ヘルプ
このページは自動生成された MediaWiki API の説明文書ページです。
説明文書と例: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
action=setglobalaccountstatus
- このモジュールは読み取りの権限を必要とします。
- このモジュールは書き込みの権限を必要とします。
- このモジュールは POST リクエストのみを受け付けます。
- ソース: CentralAuth
- ライセンス: GPL-2.0-or-later
Hide or lock (or unhide or unlock) a global user account.
- user
User to change the status of.
- この変数は必須です。
- locked
Change whether this user is locked or not.
- 値 (次の値のいずれか1つ): 空もしくはlock、unlockを使用
Change whether this user is not hidden, hidden from the global users list, or suppressed.
- 値 (次の値のいずれか1つ): 空もしくはlists、suppressedを使用
- reason
Reason for changing the user's status.
- statecheck
Optional MD5 of the expected current userid:username:hidden:locked. This is used to detect edit conflicts. The value of hidden must be an empty string if not hidden or the strings
lists
orsuppressed
. The value of locked must be 1 for locked, 0 for unlocked. Examples: 2128506:LeeSmith::0; 3839611:VandalGoblin:suppressed:1.- token
action=query&meta=tokens から取得した「setglobalaccountstatus」トークン
- この変数は必須です。
- Lock the global account for User:Example with reason "Spam"
- api.php?action=setglobalaccountstatus&user=Example&locked=lock&hidden=&reason=Spam [サンドボックスで開く]
- Unlock and suppress the global account for User:Example with reason "I can"
- api.php?action=setglobalaccountstatus&user=Example&locked=unlock&hidden=suppressed&reason=I%20can [サンドボックスで開く]