미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/API
action=delete
(main | delete)
- 이 모듈은 read 권한을 요구합니다.
- 이 모듈은 write 권한을 요구합니다.
- 이 모듈은 POST 요청만을 허용합니다.
- 출처: MediaWiki
- 라이선스: GPL-2.0+
문서 삭제
변수:
- title
삭제할 문서의 제목. pageid과 함께 사용할 수 없습니다.
- pageid
삭제할 문서의 ID. title과 함께 사용할 수 없습니다.
- 유형: 정수
- reason
삭제의 이유. 설정하지 않으면 자동 생성되는 이유를 사용합니다.
- tags
Change tags to apply to the entry in the deletion log.
- 값 (|로 구분):
- watch
- 사용되지 않습니다.
문서를 현재 사용자의 주시문서 목록에 추가합니다.
- 유형: 부울 (자세한 정보)
- watchlist
Unconditionally add or remove the page from the current user's watchlist, use preferences or do not change watch.
- 다음 값 중 하나: watch, unwatch, preferences, nochange
- 기본값: preferences
- unwatch
- 사용되지 않습니다.
문서를 현재 사용자의 주시문서 목록에서 제거합니다.
- 유형: 부울 (자세한 정보)
- oldimage
The name of the old image to delete as provided by action=query&prop=imageinfo&iiprop=archivename.
- token
A "csrf" token retrieved from action=query&meta=tokens
- 이 변수는 필수 입력 사항입니다.
예시:
- Main Page를 삭제합니다.
- api.php?action=delete&title=Main%20Page&token=123ABC [연습장에서 열기]
- Delete Main Page with the reason Preparing for move.
- api.php?action=delete&title=Main%20Page&token=123ABC&reason=Preparing%20for%20move [연습장에서 열기]