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=options
- This module requires read rights.
- This module requires write rights.
- This module only accepts POST requests.
- Fonte: MediaWiki
- Licença: GPL-2.0+
Change preferences of the current user.
Only options which are registered in core or in one of installed extensions, or options with keys prefixed with userjs-
(intended to be used by user scripts), can be set.
- reset
Redefinir preferências para os padrões do site.
- Tipo: boolean (detalhes)
- resetkinds
List of types of options to reset when the reset option is set.
- Valores (separar com |): registered, registered-multiselect, registered-checkmatrix, userjs, special, unused, all
- Padrão: all
- change
List of changes, formatted name=value (e.g. skin=vector). Value cannot contain pipe characters. If no value is given (not even an equals sign), e.g., optionname|otheroption|..., the option will be reset to its default value.
- Separe os valores com |. Maximum number of values is 50 (500 for bots).
- optionname
The name of the option that should be set to the value given by optionvalue.
- optionvalue
The value for the option specified by optionname, can contain pipe characters.
- token
A "csrf" token retrieved from action=query&meta=tokens
- Este parâmetro é obrigatório.
- Resetar todas as preferências
- api.php?action=options&reset=&token=123ABC [abrir na página de testes]
- Change skin and hideminor preferences.
- api.php?action=options&change=skin=vector|hideminor=1&token=123ABC [abrir na página de testes]
- Redefine todas as preferências, então define skin e apelido.
- api.php?action=options&reset=&change=skin=monobook&optionname=nickname&optionvalue=[[User:Beau|Beau]]%20([[User_talk:Beau|talk]])&token=123ABC [abrir na página de testes]