MediaWiki-API-Hilfe
Dies ist eine automatisch generierte MediaWiki-API-Dokumentationsseite.
Dokumentation und Beispiele: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
action=regexunblock
(main | regexunblock)
- Dieses Modul erfordert Leserechte.
- Dieses Modul erfordert Schreibrechte.
- Dieses Modul akzeptiert nur POST-Anfragen.
- Quelle: RegexBlock
- Lizenz: GPL-2.0-or-later
Unblock users' names and IP addresses via regular expressions.
Parameter:
- regex
The blocked regular expression to unblock (may not actually be a true regular expression when exact blocking is used).
- Dieser Parameter ist erforderlich.
- token
Ein „csrf“-Token abgerufen von action=query&meta=tokens
- Dieser Parameter ist erforderlich.
Beispiele:
- 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 [in Spielwiese öffnen]
- 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.* [in Spielwiese öffnen]