Ajuda API da MediaWiki
Esta é uma página de documentação API do MediaWiki gerada automaticamente.
Documentação e exemplos: https://www.mediawiki.org/wiki/API
action=protect
- This module requires read rights.
- This module requires write rights.
- This module only accepts POST requests.
- Fonte: MediaWiki
- Licença: GPL-2.0+
Modifica o nível de proteção de uma página.
- title
Título da página para (des)proteger. Não pode ser usado em conjunto com pageid.
- pageid
ID da página a se (des)proteger. Não pode ser usado em conjunto com title.
- Type: integer
- protections
List of protection levels, formatted action=level (e.g. edit=sysop).
Note: Any actions not listed will have restrictions removed.
- Este parâmetro é obrigatório.
- Separe os valores com |. Maximum number of values is 50 (500 for bots).
- expiry
Expiry timestamps. If only one timestamp is set, it'll be used for all protections. Use infinite, indefinite, infinity, or never, for a never-expiring protection.
- Separe os valores com |. Maximum number of values is 50 (500 for bots).
- Padrão: infinite
- reason
Motivo para (des)proteger.
- Padrão: (vazio)
- tags
Change tags to apply to the entry in the protection log.
- Valores (separar com |):
- cascade
Enable cascading protection (i.e. protect transcluded templates and images used in this page). Ignored if none of the given protection levels support cascading.
- Tipo: boolean (detalhes)
- watch
- Obsoleto.
If set, add the page being (un)protected to the current user's watchlist.
- Tipo: boolean (detalhes)
- watchlist
Unconditionally add or remove the page from the current user's watchlist, use preferences or do not change watch.
- Um dos seguintes valores: watch, unwatch, preferences, nochange
- Padrão: preferences
- token
A "csrf" token retrieved from action=query&meta=tokens
- Este parâmetro é obrigatório.
- Protege uma página.
- api.php?action=protect&title=Main%20Page&token=123ABC&protections=edit=sysop|move=sysop&cascade=&expiry=20070901163000|never [abrir na página de testes]
- Desprotege uma página definindo restrições para all.
- api.php?action=protect&title=Main%20Page&token=123ABC&protections=edit=all|move=all&reason=Lifting%20restrictions [abrir na página de testes]
- Desprotege uma página ao não definir restrições.
- api.php?action=protect&title=Main%20Page&token=123ABC&protections=&reason=Lifting%20restrictions [abrir na página de testes]