미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/API
action=move
(main | move)
- 이 모듈은 read 권한을 요구합니다.
- 이 모듈은 write 권한을 요구합니다.
- 이 모듈은 POST 요청만을 허용합니다.
- 출처: MediaWiki
- 라이선스: GPL-2.0+
문서 이동하기.
변수:
- from
Title of the page to rename. Cannot be used together with fromid.
- fromid
Page ID of the page to rename. Cannot be used together with from.
- 유형: 정수
- to
Title to rename the page to.
- 이 변수는 필수 입력 사항입니다.
- reason
제목을 변경하는 이유
- 기본값: (비어 있음)
- movetalk
토론 문서가 존재한다면, 토론 문서도 이름을 변경해주세요.
- 유형: 부울 (자세한 정보)
- movesubpages
하위 문서가 있다면, 하위 문서도 이름을 변경해주세요.
- 유형: 부울 (자세한 정보)
- noredirect
넘겨주기 문서 만들지 않기
- 유형: 부울 (자세한 정보)
- watch
- 사용되지 않습니다.
현재 사용자의 주시 문서에 이 문서와 넘겨주기 문서를 추가하기
- 유형: 부울 (자세한 정보)
- unwatch
- 사용되지 않습니다.
현재 사용자의 주시 문서에 이 문서와 넘겨주기 문서를 제거하기
- 유형: 부울 (자세한 정보)
- 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
- ignorewarnings
모든 경고 무시하기
- 유형: 부울 (자세한 정보)
- token
A "csrf" token retrieved from action=query&meta=tokens
- 이 변수는 필수 입력 사항입니다.
예시:
- Move Badtitle to Goodtitle without leaving a redirect.
- api.php?action=move&from=Badtitle&to=Goodtitle&token=123ABC&reason=Misspelled%20title&movetalk=&noredirect= [연습장에서 열기]