미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/API
list=recentchanges (rc)
- 이 모듈은 read 권한을 요구합니다.
 - 이 모듈은 생성기로 사용할 수 있습니다.
 - 출처: MediaWiki
 - 라이선스: GPL-2.0-or-later
 
최근 바뀜을 열거합니다.
- rcstart
 The timestamp to start enumerating from.
- 유형: 타임스탬프 (허용되는 포맷)
 - rcend
 The timestamp to end enumerating.
- 유형: 타임스탬프 (허용되는 포맷)
 - rcdir
 In which direction to enumerate:
- newer
 - List oldest first. Note: rcstart has to be before rcend.
 - older
 - List newest first (default). Note: rcstart has to be later than rcend.
 
- 다음 값 중 하나: newer, older 또는 다른 문자열: newer, older
 - 기본값: older
 - rcnamespace
 Filter changes to only these namespaces.
- 값 (|로 구분): -1, -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 828, 829, 2300, 2301, 2302, 2303, 2600 또는 다른 문자열: -1, -2, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 828, 829, 2300, 2301, 2302, 2303, 2600
 - 모든 값을 지정하려면, *를 사용하십시오.
 - rcuser
 Only list changes by this user.
- Type: user, by any of 사용자 이름, IP, 인터위키 이름 (예: "prefix>ExampleName"), 사용자 ID (예: "#12345")
 - rcexcludeuser
 Don't list changes by this user.
- Type: user, by any of 사용자 이름, IP, 인터위키 이름 (예: "prefix>ExampleName"), 사용자 ID (예: "#12345")
 - rctag
 Only list changes tagged with this tag.
- rcprop
 추가 정보를 포함합니다:
- user
 - 편집에 임할 사용자를 추가하고 IP인 경우 태그합니다.
 - userid
 - 편집에 임할 사용자를 추가합니다.
 - comment
 - Adds the comment for the edit. If the comment has been revision deleted, a commenthidden property will be returned.
 - parsedcomment
 - Adds the parsed comment for the edit. If the comment has been revision deleted, a commenthidden property will be returned.
 - flags
 - 편집에 대한 플래그를 추가합니다.
 - timestamp
 - Adds timestamp of the edit.
 - title
 - Adds the page title of the edit.
 - ids
 - Adds the page ID, recent changes ID and the new and old revision ID.
 - sizes
 - Adds the new and old page length in bytes.
 - redirect
 - Tags edit if page is a redirect.
 - patrolled
 - Tags patrollable edits as being patrolled or unpatrolled.
 - loginfo
 - Adds log information (log ID, log type, etc) to log entries.
 - tags
 - Lists tags for the entry.
 - sha1
 - Adds the content checksum for entries associated with a revision. If the content has been revision deleted, a sha1hidden property will be returned.
 
- 값 (|로 구분): comment, flags, ids, loginfo, parsedcomment, patrolled, redirect, sha1, sizes, tags, timestamp, title, user, userid 또는 다른 문자열: comment, flags, ids, loginfo, parsedcomment, patrolled, redirect, sha1, sizes, tags, timestamp, title, user, userid
 - 기본값: title|timestamp|ids
 - rctoken
 - 구식입니다.
 Use action=query&meta=tokens instead.
- 값 (|로 구분): patrol 또는 다른 문자열: patrol
 - rcshow
 Show only items that meet these criteria. For example, to see only minor edits done by logged-in users, set rcshow=minor|!anon.
- 값 (|로 구분): !anon, !autopatrolled, !bot, !minor, !patrolled, !redirect, anon, autopatrolled, bot, minor, patrolled, redirect, unpatrolled 또는 다른 문자열: !anon, !autopatrolled, !bot, !minor, !patrolled, !redirect, anon, autopatrolled, bot, minor, patrolled, redirect, unpatrolled
 - rclimit
 How many total changes to return.
- 유형: 정수 또는 max
 - The value must be between 1 and 500.
 - 기본값: 10
 - rctype
 Which types of changes to show.
- 값 (|로 구분): categorize, edit, external, log, new 또는 다른 문자열: categorize, edit, external, log, new
 - 기본값: edit|new|log|categorize
 - rctoponly
 Only list changes which are the latest revision.
- Type: boolean (details)
 - rctitle
 Filter entries to those related to a page.
- rccontinue
 더 많은 결과를 이용할 수 있을 때, 계속하려면 이것을 사용하십시오.
- rcgeneraterevisions
 When being used as a generator, generate revision IDs rather than titles. Recent change entries without associated revision IDs (e.g. most log entries) will generate nothing.
- Type: boolean (details)
 - rcslot
 Only list changes that touch the named slot.
- 다음 값 중 하나: main 또는 다른 문자열: main
 
- List recent changes.
 - api.php?action=query&list=recentchanges [연습장에서 열기]
 - Get page info about recent unpatrolled changes.
 - api.php?action=query&generator=recentchanges&grcshow=!patrolled&prop=info [연습장에서 열기]