MediaWiki API ヘルプ

このページは自動生成された MediaWiki API の説明文書ページです。

説明文書と例: https://www.mediawiki.org/wiki/API

action=options

(main | options)
  • このモジュールは読み取りの権限を必要とします。
  • このモジュールは書き込みの権限を必要とします。
  • このモジュールは POST リクエストのみを受け付けます。
  • Source: MediaWiki
  • License: 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

Resets preferences to the site defaults.

Type: boolean (details)
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). Value cannot contain pipe characters. If no value is given (not even an equals sign), e.g., optionname|otheroption|..., the option will be reset to its default value.

複数の値は | で区切ってください。 値の最大値は 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, can contain pipe characters.

token

action=query&meta=tokens から取得した「csrf」トークン

このパラメーターは必須です。
例:
すべて初期設定に戻す。
api.php?action=options&reset=&token=123ABC
skin および hideminor の個人設定を変更する。
api.php?action=options&change=skin=vector|hideminor=1&token=123ABC
すべての個人設定を初期化し、skin および nickname を設定する。
api.php?action=options&reset=&change=skin=monobook&optionname=nickname&optionvalue=[[User:Beau|Beau]]%20([[User_talk:Beau|talk]])&token=123ABC