MediaWiki API help

This is an auto-generated MediaWiki API documentation page.

Documentation and examples: https://www.mediawiki.org/wiki/API

list=watchlist (wl)

(main | query | watchlist)
  • Este módulo requiere permisos de lectura.
  • Este módulo puede utilizarse como un generador.
  • Fuente: MediaWiki
  • Licencia: GPL-2.0+

Get recent changes to pages in the current user's watchlist.

Parámetros:
wlallrev

Include multiple revisions of the same page within given timeframe.

Tipo: booleano/lógico (detalles)
wlstart

El sello de tiempo para comenzar la enumeración

Tipo: timestamp (formatos permitidos)
wlend

El sello de tiempo para finalizar la enumeración.

Tipo: timestamp (formatos permitidos)
wlnamespace

Filter changes to only the given namespaces.

Valores (separados por |): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 100, 101, 102, 103, 104, 105, 106, 107, 110, 111
wluser

Only list changes by this user.

Tipo: nombre de usuario
wlexcludeuser

No listar cambios de este usuario.

Tipo: nombre de usuario
wldir

In which direction to enumerate:

newer
List oldest first. Note: wlstart has to be before wlend.
older
List newest first (default). Note: wlstart has to be later than wlend.
Uno de los siguientes valores: newer, older
Predeterminado: older
wllimit

How many total results to return per request.

No se permite más de 500 (5000 para los bots).
Tipo: entero o max
Predeterminado: 10
wlprop

Qué propiedades adicionales se obtendrán:

ids
Añade identificadores de revisiones y de páginas.
title
Añade el título de la página.
flags
Añade marcas para la edición.
user
Añade el usuario que hizo la edición.
userid
Añade el identificador de usuario de quien hizo la edición.
comment
Añade el comentario de la edición.
parsedcomment
Adds parsed comment of the edit.
timestamp
Añade fecha y hora de la edición.
patrol
Etiqueta las ediciones que están verificadas.
sizes
Añade la longitud vieja y la nueva de la página.
notificationtimestamp
Añade fecha y hora de cuando el usuario fue notificado por última vez acerca de la edición.
loginfo
Añade información del registro cuando corresponda.
Valores (separados por |): ids, title, flags, user, userid, comment, parsedcomment, timestamp, patrol, sizes, notificationtimestamp, loginfo
Predeterminado: ids|title|flags
wlshow

Show only items that meet these criteria. For example, to see only minor edits done by logged-in users, set wlshow=minor|!anon.

Valores (separados por |): minor, !minor, bot, !bot, anon, !anon, patrolled, !patrolled, unread, !unread
wltype

Qué tipos de cambios mostrar:

edit
Ediciones comunes a páginas
new
Creaciones de páginas.
log
Entradas del registro.
external
Cambios externos.
categorize
Category membership changes.
Valores (separados por |): edit, new, log, external, categorize
Predeterminado: edit|new|log|categorize
wlowner

Used along with wltoken to access a different user's watchlist.

Tipo: nombre de usuario
wltoken

A security token (available in the user's preferences) to allow access to another user's watchlist.

wlcontinue

Cuando haya más resultados disponibles, utiliza esto para continuar.

Ejemplos:
List the top revision for recently changed pages on the current user's watchlist.
api.php?action=query&list=watchlist [open in sandbox]
Fetch additional information about the top revision for recently changed pages on the current user's watchlist.
api.php?action=query&list=watchlist&wlprop=ids|title|timestamp|user|comment [open in sandbox]
Fetch information about all recent changes to pages on the current user's watchlist.
api.php?action=query&list=watchlist&wlallrev=&wlprop=ids|title|timestamp|user|comment [open in sandbox]
Fetch page info for recently changed pages on the current user's watchlist.
api.php?action=query&generator=watchlist&prop=info [open in sandbox]
Fetch revision info for recent changes to pages on the current user's watchlist.
api.php?action=query&generator=watchlist&gwlallrev=&prop=revisions&rvprop=timestamp|user [open in sandbox]
List the top revision for recently changed pages on the watchlist of user Example.
api.php?action=query&list=watchlist&wlowner=Example&wltoken=123ABC [open in sandbox]