미디어위키 API 도움말

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

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

list=readinglistentries (rle)

(main | query | readinglistentries)
  • 이 모듈은 내부용이거나 불안정합니다. 동작은 예고 없이 변경될 수 있습니다.
  • 이 모듈은 read 권한을 요구합니다.
  • 이 모듈은 생성기로 사용할 수 있습니다.
  • 출처: ReadingLists
  • 라이선스: GPL-2.0-or-later

특정 목록의 문서를 나열합니다.

This module has two modes of operation. With the rlelists parameter, it returns the pages in the given list(s). With the rlechangedsince parameter, it returns all list entries from any list of the current user which have been changed since the given date. (This is meant for device sync and, unlike the other modes, includes deleted entries, although not entries of deleted lists.)

특정 변수:
다른 일반 변수를 사용할 수 있습니다.
rlelists

문서를 반환할 목록 ID입니다.

유형: 정수 목록
| 또는 대안으로 값을 구분합니다.
값의 최대 수는 50(더 높은 제한이 허용된 클라이언트의 경우 500)입니다.
rlechangedsince

이 타임스탬프 이후로 변경된 목록 엔트리를 표시합니다. 2024-05-03T12:39:38Z 이후여야 합니다.

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

Property to sort by. name cannot be used together with rlechangedsince. Defaults to updated when rlechangedsince is set, and to name otherwise.

name
문서의 제목입니다. (프로젝트 이름은 무시됩니다. 이진값으로 정렬됩니다. 이를테면 모든 ASCII 대문자는 소문자 보다 우선하여 정렬됩니다.)
updated
Last update timestamp.
다음 값 중 하나: name, updated 또는 다른 문자열: name, updated
rledir

정렬 방향: ascending (A부터 Z, 가장 오래된 것부터 가장 새로운 것) 또는 descending.

다음 값 중 하나: ascending, descending 또는 다른 문자열: ascending, descending
기본값: ascending
rlelimit

반환할 결과 항목의 수입니다.

유형: 정수 또는 max
값은 1와 100 사이여야 합니다.
기본값: 10
rlecontinue

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

예시:
Get the pages from the reading lists with ID 10, 11 and 12.
api.php?action=query&list=readinglistentries&rlelists=10|11|12 [연습장에서 열기]
2013-01-01T00:00:00Z 이후로 변경된 현재 사용자의 목록 엔트리를 가져옵니다.
api.php?action=query&list=readinglistentries&rlechangedsince=2013-01-01T00:00:00Z [연습장에서 열기]