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=edit
- This module requires read rights.
- This module requires write rights.
- This module only accepts POST requests.
- Fonte: MediaWiki
- Licença: GPL-2.0+
Criar e editar páginas.
- title
Título da página para editar. Não pode ser usado em conjunto com pageid.
- pageid
ID da página para editar. Não pode ser usada juntamente com title.
- Type: integer
- section
Section number. 0 for the top section, new for a new section.
- sectiontitle
O título para uma nova seção.
- text
Conteúdo da página
- summary
Edit summary. Also section title when section=new and sectiontitle is not set.
- tags
Change tags to apply to the revision.
- Valores (separar com |):
- minor
Edição menor.
- Tipo: boolean (detalhes)
- notminor
Edição não-menor.
- Tipo: boolean (detalhes)
- bot
Marcar esta edição como feita por bot.
- Tipo: boolean (detalhes)
- basetimestamp
Timestamp of the base revision, used to detect edit conflicts. May be obtained through action=query&prop=revisions&rvprop=timestamp.
- Type: timestamp (allowed formats)
- starttimestamp
Timestamp when the editing process began, used to detect edit conflicts. An appropriate value may be obtained using curtimestamp when beginning the edit process (e.g. when loading the page content to edit).
- Type: timestamp (allowed formats)
- recreate
Override any errors about the page having been deleted in the meantime.
- Tipo: boolean (detalhes)
- createonly
Não editar a página se já existir.
- Tipo: boolean (detalhes)
- nocreate
Mostra um erro se a página não existir.
- Tipo: boolean (detalhes)
- watch
- Obsoleto.
Adiciona a página para a lista de vigiados do usuário atual.
- Tipo: boolean (detalhes)
- unwatch
- Obsoleto.
Remove a página para a lista de vigiados do usuário atual.
- Tipo: boolean (detalhes)
- watchlist
Incondicionalmente adiciona ou página para a lista de vigiados do usuário atual, usa as preferências ou não modifica.
- Um dos seguintes valores: watch, unwatch, preferences, nochange
- Padrão: preferences
- md5
The MD5 hash of the text parameter, or the prependtext and appendtext parameters concatenated. If set, the edit won't be done unless the hash is correct.
- prependtext
Add this text to the beginning of the page. Overrides text.
- appendtext
Add this text to the end of the page. Overrides text.
Use section=new to append a new section, rather than this parameter.
- undo
Undo this revision. Overrides text, prependtext and appendtext.
- Type: integer
- undoafter
Undo all revisions from undo to this one. If not set, just undo one revision.
- Type: integer
- redirect
Automatically resolve redirects.
- Tipo: boolean (detalhes)
- contentformat
Formato de serialização de conteúdo usado para o texto de entrada.
- Um dos seguintes valores: text/x-wiki, text/javascript, application/json, text/css, text/plain
- contentmodel
Modelo de conteúdo do novo conteúdo.
- Um dos seguintes valores: wikitext, javascript, json, css, text
- token
A "csrf" token retrieved from action=query&meta=tokens
The token should always be sent as the last parameter, or at least after the text parameter.
- Este parâmetro é obrigatório.
- captchaword
Answer to the CAPTCHA
- captchaid
CAPTCHA ID from previous request
- Edita uma página.
- api.php?action=edit&title=Test&summary=test%20summary&text=article%20content&basetimestamp=2007-08-24T12:34:54Z&token=123ABC [abrir na página de testes]
- Antecende __NOTOC__ a página.
- api.php?action=edit&title=Test&summary=NOTOC&minor=&prependtext=__NOTOC__%0A&basetimestamp=2007-08-24T12:34:54Z&token=123ABC [abrir na página de testes]
- Undo revisions 13579 through 13585 with autosummary.
- api.php?action=edit&title=Test&undo=13585&undoafter=13579&basetimestamp=2007-08-24T12:34:54Z&token=123ABC [abrir na página de testes]