미디어위키 API 도움말
이 페이지는 자동으로 생성된 미디어위키 API 도움말 문서입니다.
설명 문서 및 예시: https://www.mediawiki.org/wiki/API
action=options
- 이 모듈은 read 권한을 요구합니다.
- 이 모듈은 write 권한을 요구합니다.
- 이 모듈은 POST 요청만을 허용합니다.
- 출처: MediaWiki
- 라이선스: GPL-2.0+
Change preferences of the current user.
Only options which are registered in core or in one of installed extensions, or options with keys prefixed with userjs-
(intended to be used by user scripts), can be set.
- reset
사이트 기본으로 설정 초기화
- 유형: 부울 (자세한 정보)
- resetkinds
List of types of options to reset when the reset option is set.
- 값 (|로 구분): registered, registered-multiselect, registered-checkmatrix, userjs, special, unused, all
- 기본값: all
- change
List of changes, formatted name=value (e.g. skin=vector). If no value is given (not even an equals sign), e.g., optionname|otheroption|..., the option will be reset to its default value. If any value passed contains the pipe character (|), use the alternative multiple-value separator for correct operation.
- Separate values with | or alternative. 값들의 최대 수는 50입니다. (봇의 경우 500)
- optionname
The name of the option that should be set to the value given by optionvalue.
- optionvalue
The value for the option specified by optionname.
- token
A "csrf" token retrieved from action=query&meta=tokens
- 이 변수는 필수 입력 사항입니다.
- 모든 설정 초기화
- api.php?action=options&reset=&token=123ABC [연습장에서 열기]
- Change skin and hideminor preferences.
- api.php?action=options&change=skin=vector|hideminor=1&token=123ABC [연습장에서 열기]
- Reset all preferences, then set skin and nickname.
- api.php?action=options&reset=&change=skin=monobook&optionname=nickname&optionvalue=[[User:Beau|Beau]]%20([[User_talk:Beau|talk]])&token=123ABC [연습장에서 열기]