API:日志事件
本页是MediaWiki Action API帮助文档的一部份。 |
MediaWiki版本: | ≥ 1.9 |
GET请求获取所有已记录事件的日志列表,如Special:Log所示。
API帮助文档
示例
GET请求
获取最近的三个日志事件。
响应
{
"batchcomplete": "",
"continue": {
"continue": "-||",
"lecontinue": "20190606150600|99729503"
},
"query": {
"logevents": [
{
"action": "create",
"comment": "added to WikiProject (via [[WP:JWB]])",
"logid": 99729506,
"logpage": 60974819,
"ns": 15,
"pageid": 60974819,
"params": {},
"timestamp": "2019-06-06T15:06:07Z",
"title": "Category talk:Electronic albums by Senegalese artists",
"type": "create",
"user": "Jevansen"
}
...
]
}
}
示例代码
Python
#!/usr/bin/python3
"""
get_logevents.py
MediaWiki API Demos
Demo of `Logevents` module: Get the three most recent logevents.
MIT License
"""
import requests
S = requests.Session()
URL = "https://en.wikipedia.org/w/api.php"
PARAMS = {
"action": "query",
"format": "json",
"list": "logevents",
"lelimit": "3"
}
R = S.get(url=URL, params=PARAMS)
DATA = R.json()
LOGS = DATA["query"]["logevents"]
for l in LOGS:
print("There is " + l["type"] + " log for page " + l["title"])
PHP
<?php
/*
get_logevents.php
MediaWiki API Demos
Demo of `Logevents` module: Get the three most recent logevents.
MIT License
*/
$endPoint = "https://en.wikipedia.org/w/api.php";
$params = [
"action" => "query",
"format" => "json",
"list" => "logevents",
"lelimit" => "3"
];
$url = $endPoint . "?" . http_build_query( $params );
$ch = curl_init( $url );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, true );
$output = curl_exec( $ch );
curl_close( $ch );
$result = json_decode( $output, true );
foreach( $result["query"]["logevents"] as $k => $v ) {
echo( "There is " . $v["type"] . " log for page " . $v["title"] . "\n" );
}
JavaScript
/*
get_logevents.js
MediaWiki API Demos
Demo of `Logevents` module: Get the three most recent logevents.
MIT License
*/
var url = "https://en.wikipedia.org/w/api.php";
var params = {
action: "query",
format: "json",
list: "logevents",
lelimit: "3"
};
url = url + "?origin=*";
Object.keys(params).forEach(function(key){url += "&" + key + "=" + params[key];});
fetch(url)
.then(function(response){return response.json();})
.then(function(response) {
var logs = response.query.logevents;
for (var l in logs) {
console.log("There is " + logs[l].type + " log for page " + logs[l].title);
}
})
.catch(function(error){console.log(error);});
MediaWiki JS
/*
get_logevents.js
MediaWiki API Demos
Demo of `Logevents` module: Get the three most recent logevents.
MIT License
*/
var params = {
action: 'query',
format: 'json',
list: 'logevents',
lelimit: '3'
},
api = new mw.Api();
api.get( params ).done( function ( data ) {
var logs = data.query.logevents,
l;
for ( l in logs ) {
console.log( 'There is ' + logs[ l ].type + ' log for page ' + logs[ l ].title );
}
} );
可能的错误
代码 | 信息 |
---|---|
leparam_user | 未找到用户名username。 |
leparam_title | 错误标题“title”。 发生在设定 letitle 是一个无效标题时。
|
apierror-unrecognizedvalue | 无法识别的参数leaction的值:value。 |
apierror-prefixsearchdisabled | 前缀搜索在Miser模式中被禁用。 |
参数历史
- v1.17: 启用
leaction
附加提醒
- This module cannot be used as a generator .
- For autoblock unblock entries, the
title
returned is shown as "User:$blockid". This is not a userpage, but just the way it is stored. 参见工單T19781。 - When
userid
is specified for account creation events, theuserid
of the creating user is returned. When absent, theuserid
returned is that of the created account. See 工單T73020. - See 手册:日志操作 for log types and log actions, and their log parameters and log_search entries and descriptions.
- Every log action is logged in the 手册:logging表 . Users can see those edits on Special:Log, except for a few restricted logs like Special:Log/suppress.
參見
- API:Recentchanges - 获取所有最近更改的列表。
- API:Database field and API property associations .