미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/API
list=allimages (ai)
- 이 모듈은 read 권한을 요구합니다.
- 이 모듈은 생성기로 사용할 수 있습니다.
- 출처: MediaWiki
- 라이선스: GPL-2.0-or-later
모든 그림을 순차적으로 열거합니다.
- aisort
Property to sort by.
- 다음 값 중 하나: name, timestamp 또는 alternative: name, timestamp
- 기본값: name
- aidir
The direction in which to list.
- 다음 값 중 하나: ascending, descending, newer, older 또는 alternative: ascending, descending, newer, older
- 기본값: ascending
- aifrom
The image title to start enumerating from. Can only be used with aisort=name.
- aito
The image title to stop enumerating at. Can only be used with aisort=name.
- aicontinue
더 많은 결과를 이용할 수 있을 때, 계속하려면 이것을 사용하십시오.
- aistart
The timestamp to start enumerating from. Can only be used with aisort=timestamp.
- 유형: 타임스탬프 (허용되는 포맷)
- aiend
The timestamp to end enumerating. Can only be used with aisort=timestamp.
- 유형: 타임스탬프 (허용되는 포맷)
- aiprop
가져올 파일 정보입니다:
- timestamp
- 업로드된 판에 대한 타임스탬프를 추가합니다.
- user
- Adds the user who uploaded each file version.
- userid
- Add the ID of the user that uploaded each file version.
- comment
- Comment on the version.
- parsedcomment
- 판의 설명을 구문 분석합니다.
- canonicaltitle
- Adds the canonical title of the file.
- url
- Gives URL to the file and the description page.
- size
- Adds the size of the file in bytes and the height, width and page count (if applicable).
- dimensions
- Alias for size.
- sha1
- 파일에 대한 SHA-1 해시를 추가합니다.
- mime
- Adds MIME type of the file.
- mediatype
- 파일의 미디어 유형을 추가합니다.
- metadata
- Lists Exif metadata for the version of the file.
- commonmetadata
- Lists file format generic metadata for the version of the file.
- extmetadata
- Lists formatted metadata combined from multiple sources. Results are HTML formatted.
- bitdepth
- Adds the bit depth of the version.
- badfile
- Adds whether the file is on the MediaWiki:Bad image list
- 값 (|로 구분): timestamp, user, userid, comment, parsedcomment, canonicaltitle, url, size, dimensions, sha1, mime, mediatype, metadata, commonmetadata, extmetadata, bitdepth, badfile 또는 alternative: timestamp, user, userid, comment, parsedcomment, canonicaltitle, url, size, dimensions, sha1, mime, mediatype, metadata, commonmetadata, extmetadata, bitdepth, badfile
- 기본값: timestamp|url
- aiprefix
Search for all image titles that begin with this value. Can only be used with aisort=name.
- aiminsize
Limit to images with at least this many bytes.
- 유형: 정수
- aimaxsize
Limit to images with at most this many bytes.
- 유형: 정수
- aisha1
SHA1 hash of image. Overrides aisha1base36.
- aisha1base36
SHA1 hash of image in base 36 (used in MediaWiki).
- aiuser
Only return files uploaded by this user. Can only be used with aisort=timestamp. Cannot be used together with aifilterbots.
- 유형: 사용자 이름
- aifilterbots
How to filter files uploaded by bots. Can only be used with aisort=timestamp. Cannot be used together with aiuser.
- 다음 값 중 하나: all, bots, nobots 또는 alternative: all, bots, nobots
- 기본값: all
- aimime
What MIME types to search for, e.g. image/jpeg.
- | 또는 대안으로 값을 구분합니다. 값들의 최대 수는 50입니다. (봇의 경우 500)
- ailimit
How many images in total to return.
- 500 초과는 허용되지 않습니다. (봇의 경우 5,000)
- 유형: 정수 또는 max
- 기본값: 10
- Show a list of files starting at the letter B.
- api.php?action=query&list=allimages&aifrom=B [연습장에서 열기]
- 최근 업로드된 파일을 보여줍니다. Special:NewFiles와 유사합니다.
- api.php?action=query&list=allimages&aiprop=user|timestamp|url&aisort=timestamp&aidir=older [연습장에서 열기]
- Show a list of files with MIME type image/png or image/gif
- api.php?action=query&list=allimages&aimime=image/png|image/gif [연습장에서 열기]
- Show info about 4 files starting at the letter T.
- api.php?action=query&generator=allimages&gailimit=4&gaifrom=T&prop=imageinfo [연습장에서 열기]