미디어위키 API 도움말

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

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

list=watchlist (wl)

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

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

변수:
wlallrev

Include multiple revisions of the same page within given timeframe.

유형: 부울 (자세한 정보)
wlstart

The timestamp to start enumerating from.

Type: timestamp (allowed formats)
wlend

The timestamp to end enumerating.

Type: timestamp (allowed formats)
wlnamespace

Filter changes to only the given namespaces.

값 (|로 구분): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 2300, 2301, 2302, 2303
wluser

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

Type: user name
wlexcludeuser

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

Type: user name
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
기본값: older
wllimit

How many total results to return per request.

500 초과는 허용되지 않습니다. (봇의 경우 5,000)
유형: 정수 또는 max
기본값: 10
wlprop

Which additional properties to get:

;ids:판 ID와 페이지 ID를 추가합니다.

;title:문서의 제목을 추가합니다.

;flags:편집에 대한 플래그를 추가합니다.

;user:Adds the user who made the edit.

;userid:Adds user ID of whoever made the edit.

;comment:Adds comment of the edit.

;parsedcomment:Adds parsed comment of the edit.

;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:적절한 곳에 로그 정보를 추가합니다.

값 (|로 구분): ids, title, flags, user, userid, comment, parsedcomment, timestamp, patrol, sizes, notificationtimestamp, loginfo
기본값: 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.

값 (|로 구분): minor, !minor, bot, !bot, anon, !anon, patrolled, !patrolled, unread, !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.

값 (|로 구분): edit, new, log, external, categorize
기본값: edit|new|log|categorize
wlowner

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

Type: user name
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 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 [연습장에서 열기]