미디어위키 API 도움말

이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.

설명 문서 및 예시: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page

list=watchlist (wl)

(main | query | watchlist)
  • 이 모듈은 read 권한을 요구합니다.
  • 이 모듈은 생성기로 사용할 수 있습니다.
  • 출처: MediaWiki
  • 라이선스: GPL-2.0-or-later

현재 사용자의 주시목록의 문서의 최근 바뀜을 가져옵니다.

변수:
wlallrev

Include multiple revisions of the same page within given timeframe.

Type: boolean (details)
wlstart

The timestamp to start enumerating from.

유형: 타임스탬프 (허용되는 포맷)
wlend

The timestamp to end enumerating.

유형: 타임스탬프 (허용되는 포맷)
wlnamespace

Filter changes to only the given namespaces.

값 (|로 구분): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 828, 829, 2300, 2301, 2302, 2303 또는 다른 문자열: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 828, 829, 2300, 2301, 2302, 2303
모든 값을 지정하려면, *를 사용하십시오.
wluser

이 사용자의 변경 사항만 나열합니다.

형태: 사용자 이름, IP, 인터위키 이름 (예: "prefix>ExampleName"), 사용자 ID (예: "#12345") 모두에 따른 사용자
wlexcludeuser

이 사용자의 변경사항을 나열하지 않습니다.

형태: 사용자 이름, IP, 인터위키 이름 (예: "prefix>ExampleName"), 사용자 ID (예: "#12345") 모두에 따른 사용자
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.
다음 값 중 하나: newer, older 또는 다른 문자열: newer, older
기본값: older
wllimit

How many total results to return per request.

유형: 정수 또는 max
The value must be between 1 and 500.
기본값: 10
wlprop

Which additional properties to get:

ids
판 ID와 페이지 ID를 추가합니다.
title
문서의 제목을 추가합니다.
flags
편집에 대한 플래그를 추가합니다.
user
Adds the user who made the edit. If the user has been revision deleted, a userhidden property will be returned.
userid
Adds user ID of whoever made the edit. If the user has been revision deleted, a userhidden property will be returned.
comment
Adds comment of the edit. If the comment has been revision deleted, a commenthidden property will be returned.
parsedcomment
Adds parsed comment of the edit. If the comment has been revision deleted, a commenthidden property will be returned.
timestamp
Adds timestamp of the edit.
patrol
Tags edits that are patrolled.
sizes
Adds the old and new lengths of the page.
notificationtimestamp
Adds timestamp of when the user was last notified about the edit.
loginfo
적절한 곳에 로그 정보를 추가합니다.
tags
Lists tags for the entry.
expiry
(설명 없음)
값 (|로 구분): comment, expiry, flags, ids, loginfo, notificationtimestamp, parsedcomment, patrol, sizes, tags, timestamp, title, user, userid 또는 다른 문자열: comment, expiry, flags, ids, loginfo, notificationtimestamp, parsedcomment, patrol, sizes, tags, timestamp, title, user, userid
기본값: 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.

값 (|로 구분): !anon, !autopatrolled, !bot, !minor, !patrolled, !unread, anon, autopatrolled, bot, minor, patrolled, unread 또는 다른 문자열: !anon, !autopatrolled, !bot, !minor, !patrolled, !unread, anon, autopatrolled, bot, minor, patrolled, unread
wltype

Which types of changes to show:

edit
Regular page edits.
new
Page creations.
log
Log entries.
external
External changes.
categorize
Category membership changes.
값 (|로 구분): categorize, edit, external, log, new 또는 다른 문자열: categorize, edit, external, log, new
기본값: edit|new|log|categorize
wlowner

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

형태: 사용자 이름에 따른 사용자
wltoken

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

wlcontinue

더 많은 결과를 이용할 수 있을 때, 계속하려면 이것을 사용하십시오.

예시:
List the top revision for recently changed pages on the current user's watchlist.
api.php?action=query&list=watchlist [연습장에서 열기]
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 [연습장에서 열기]
Fetch additional information about the top revision for recently changed pages on the current user's watchlist, including when temporarily watched items will expire.
api.php?action=query&list=watchlist&wlprop=ids|title|timestamp|user|comment|expiry [연습장에서 열기]
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 [연습장에서 열기]
Fetch page info for recently changed pages on the current user's watchlist.
api.php?action=query&generator=watchlist&prop=info [연습장에서 열기]
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 [연습장에서 열기]
List the top revision for recently changed pages on the watchlist of user Example.
api.php?action=query&list=watchlist&wlowner=Example&wltoken=123ABC [연습장에서 열기]