미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
action=setglobalaccountstatus
(main | setglobalaccountstatus)
- 이 모듈은 read 권한을 요구합니다.
- 이 모듈은 write 권한을 요구합니다.
- 이 모듈은 POST 요청만을 허용합니다.
- 출처: CentralAuth
- 라이선스: GPL-2.0-or-later
통합 사용자의 상태를 설정합니다.
특정 변수:
다른 일반 변수를 사용할 수 있습니다.
- user
사용자의 상태를 바꿉니다.
- 이 변수는 필수입니다.
- locked
이 사용자가 잠겨있는지의 여부입니다.
- 다음 값 중 하나: 비어 있을 수 있음 또는 lock, unlock 또는 다른 문자열: 비어 있을 수 있음 또는 lock, unlock
이 사용자를 표시할지, 통합 계정 사용자 목록에서 숨길지, 표시하지 않을지를 변경합니다.
- 다음 값 중 하나: 비어 있을 수 있음 또는 lists, suppressed 또는 다른 문자열: 비어 있을 수 있음 또는 lists, suppressed
- reason
사용자의 상태를 변경하는 이유입니다.
- 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
"setglobalaccountstatus" 토큰은 action=query&meta=tokens에서 가져옵니다
- 이 변수는 필수입니다.
예시:
- 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 [연습장에서 열기]