미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/API
action=feedwatchlist
(main | feedwatchlist)
- 이 모듈은 read 권한을 요구합니다.
 - 출처: MediaWiki
 - 라이선스: GPL-2.0+
 
Returns a watchlist feed.
변수:
- feedformat
 The format of the feed.
- 하나의 값: rss, atom
 - 기본값: rss
 - hours
 List pages modified within this many hours from now.
- The value must be between 1 and 72.
 - 유형: 정수
 - 기본값: 24
 - linktosections
 Link directly to changed sections if possible.
- 유형: 부울 (자세한 정보)
 - allrev
 Include multiple revisions of the same page within given timeframe.
- 유형: 부울 (자세한 정보)
 - wlowner
 Used along with token 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.
- wlshow
 Show only items that meet these criteria. For example, to see only minor edits done by logged-in users, set show=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
 - wlexcludeuser
 Don't list changes by this user.
- Type: user name
 
예시:
- Show the watchlist feed.
 - api.php?action=feedwatchlist [open in sandbox]
 - Show all changes to watched pages in the past 6 hours.
 - api.php?action=feedwatchlist&allrev=&hours=6 [open in sandbox]