미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
action=regexunblock
(main | regexunblock)
- 이 모듈은 read 권한을 요구합니다.
- 이 모듈은 write 권한을 요구합니다.
- 이 모듈은 POST 요청만을 허용합니다.
- 출처: RegexBlock
- 라이선스: GPL-2.0-or-later
정규 표현식으로 사용자 이름과 IP 주소의 차단을 해제합니다.
변수:
- regex
The blocked regular expression to unblock (may not actually be a true regular expression when exact blocking is used).
- 이 변수는 필수입니다.
- token
"csrf" 토큰은 action=query&meta=tokens에서 가져옵니다
- 이 변수는 필수입니다.
예시:
- Unblock "192.0.2.5" (which was presumably blocked with the "exact" option to block only that IP address from editing)
- api.php?action=regexunblock®ex=192.0.2.5 [연습장에서 열기]
- Unblock the regular expression "SpamUser.*" so that accounts like "SpamUser66" may be created and existing accounts with such names can edit the site.
- api.php?action=regexunblock®ex=SpamUser.* [연습장에서 열기]