MediaWiki API ヘルプ
このページは自動生成された MediaWiki API の説明文書ページです。
説明文書と例: https://www.mediawiki.org/wiki/API
action=edit
- このモジュールは読み取りの権限を必要とします。
- このモジュールは書き込みの権限を必要とします。
- このモジュールは POST リクエストのみを受け付けます。
ページを作成、編集します。
- title
編集するページ名です。pageid とは同時に使用できません。
- pageid
編集するページIDです。title とは同時に使用できません。
- section
節番号です。先頭の節の場合は 0、新しい節の場合は newを指定します。
- sectiontitle
新しい節の名前です。
- text
ページの本文。
- summary
Edit summary. Also section title when section=new and sectiontitle is not set.
- tags
Change tags to apply to the revision.
- 値 (|で区切る):
- minor
細部の編集
- notminor
Non-minor edit.
- bot
Mark this edit as bot.
- basetimestamp
Timestamp of the base revision, used to detect edit conflicts. May be obtained through action=query&prop=revisions&rvprop=timestamp.
- starttimestamp
Timestamp when the editing process began, used to detect edit conflicts. An appropriate value may be obtained using curtimestamp when beginning the edit process (e.g. when loading the page content to edit).
- recreate
Override any errors about the page having been deleted in the meantime.
- createonly
すでにそのページが存在する場合は編集を行いません。
- nocreate
そのページが存在しない場合にエラーを返します。
- watch
- 廃止予定です。
そのページを現在の利用者のウォッチリストに追加します。
- unwatch
- 廃止予定です。
そのページを現在の利用者のウォッチリストから除去します。
- watchlist
Unconditionally add or remove the page from the current user's watchlist, use preferences or do not change watch.
- 値 (いずれか1つ): watch、unwatch、preferences、nochange
- 既定値: preferences
- md5
The MD5 hash of the text parameter, or the prependtext and appendtext parameters concatenated. If set, the edit won't be done unless the hash is correct.
- prependtext
Add this text to the beginning of the page. Overrides text.
- appendtext
Add this text to the end of the page. Overrides text.
Use section=new to append a new section, rather than this parameter.
- undo
Undo this revision. Overrides text, prependtext and appendtext.
- undoafter
Undo all revisions from undo to this one. If not set, just undo one revision.
- redirect
Automatically resolve redirects.
- contentformat
Content serialization format used for the input text.
- 値 (いずれか1つ): text/x-wiki、text/javascript、application/json、text/css、text/plain
- contentmodel
Content model of the new content.
- 値 (いずれか1つ): wikitext、javascript、json、css、text
- token
action=query&meta=tokens から取得した「csrf」トークン
このトークンは常に最後のパラメーターとして、または少なくとも text パラメーターより後に送信されるべきです。
- このパラメーターは必須です。
- captchaword
Answer to the CAPTCHA
- captchaid
CAPTCHA ID from previous request
- ページを編集
- api.php?action=edit&title=Test&summary=test%20summary&text=article%20content&basetimestamp=2007-08-24T12:34:54Z&token=123ABC
- Prepend __NOTOC__ to a page.
- api.php?action=edit&title=Test&summary=NOTOC&minor=&prependtext=__NOTOC__%0A&basetimestamp=2007-08-24T12:34:54Z&token=123ABC
- Undo revisions 13579 through 13585 with autosummary.
- api.php?action=edit&title=Test&undo=13585&undoafter=13579&basetimestamp=2007-08-24T12:34:54Z&token=123ABC