MediaWiki API 帮助
这是自动生成的MediaWiki API文档页面。
文档和例子:https://www.mediawiki.org/wiki/API:Main_page/zh
action=rollback
(main | rollback)
- 此模块需要读取权限。
- 此模块需要写入权限。
- 此模块只允许POST请求。
Undo the last edit to the page.
If the last user who edited the page made multiple edits in a row, they will all be rolled back.
参数:
- title
要回退的页面标题。不能与pageid一起使用。
- pageid
要回退的页面的页面 ID。不能与title一起使用。
- user
Name of the user whose edits are to be rolled back.
- 这个参数是必须的。
- summary
Custom edit summary. If empty, default summary will be used.
- 默认:(空)
- markbot
Mark the reverted edits and the revert as bot edits.
- watchlist
无条件地将页面加入至当前用户的监视列表或将其移除,使用设置或不更改监视。
- 一个值:watch、unwatch、preferences、nochange
- 默认:preferences
- token
从action=query&meta=tokens取回的“rollback”令牌
For compatibility, the token used in the web UI is also accepted.
- 这个参数是必须的。
例子:
- 回退由用户Example对Main Page做出的最近编辑。
- api.php?action=rollback&title=Main%20Page&user=Example&token=123ABC
- 回退由IP用户192.0.2.5对页面Main Page做出的最近编辑,带编辑摘要Reverting vandalism,并将这些编辑和回退标记为机器人编辑。
- api.php?action=rollback&title=Main%20Page&user=192.0.2.5&token=123ABC&summary=Reverting%20vandalism&markbot=1