API:文件档案
Appearance
本页是MediaWiki Action API帮助文档的一部份。 |
MediaWiki版本: | ≥ 1.17 |
GET request依次枚举filearchive 表中所有已删除的文件。
API帮助文档
示例
GET请求
获取所有已删除文件的列表。
回应
{
"batchcomplete": "",
"continue": {
"facontinue": "0000007.jpg|20070128133944|288",
"continue": "-||"
},
"query": {
"filearchive": [
{
"id": 1778,
"name": "!notedit.png",
"ns": 6,
"title": "File:!notedit.png",
"timestamp": "2011-04-25T13:17:47Z"
},
{
"id": 6949,
"name": "\"Twilight_at_the_pond\"_by_A.A.Tutunov_(1976).jpg",
"ns": 6,
"title": "File:\"Twilight at the pond\" by A.A.Tutunov (1976).jpg",
"timestamp": "2019-01-26T11:48:52Z"
},
{
"id": 5814,
"name": "---C--temp-Regelwerk.pdf",
"ns": 6,
"title": "File:---C--temp-Regelwerk.pdf",
"timestamp": "2017-03-09T10:09:24Z"
},
...
]
}
}
示例代码
Python
#!/usr/bin/python3
"""
file_archive.py
MediaWiki API Demos
Demo of `Filearchive` module: Get a list of all deleted files.
MIT License
"""
import requests
S = requests.Session()
URL = "https://en.wikipedia.org/w/api.php"
PARAMS = {
"action": "query",
"list": "filearchive",
"format": "json"
}
R = S.get(url=URL, params=PARAMS)
DATA = R.json()
print(DATA)
PHP
<?php
/*
file_archive.php
MediaWiki API Demos
Demo of `Filearchive` module: Get a list of all deleted files.
MIT License
*/
$endPoint = "https://en.wikipedia.org/w/api.php";
$params = [
"action" => "query",
"list" => "filearchive",
"format" => "json"
];
$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 );
var_dump( $result );
JavaScript
/*
file_archive.js
MediaWiki API Demos
Demo of `Filearchive` module: Get a list of all deleted files.
MIT License
*/
var url = "https://en.wikipedia.org/w/api.php";
var params = {
action: "query",
list: "filearchive",
format: "json"
};
url = url + "?origin=*";
Object.keys(params).forEach(function(key){url += "&" + key + "=" + params[key];});
fetch(url)
.then(function(response){return response.json();})
.then(function(response) {console.log(response);})
.catch(function(error){console.log(error);});
MediaWiki JS
/*
file_archive.js
MediaWiki API Demos
Demo of `Filearchive` module: Get a list of all deleted files.
MIT License
*/
var params = {
action: 'query',
list: 'filearchive',
format: 'json'
},
api = new mw.Api();
api.get( params ).done( function ( data ) {
console.log( data );
} );
可能的错误
代码 | 信息 |
---|---|
cantview-deleted-description | 您无权查看已删除文件的描述。 |
cantview-deleted-metadata | 您无权查看已删除文件的元数据。 |
invalidsha1hash | 提供的SHA1哈希无效。 |
invalidsha1base36hash | 提供的SHA1Base36哈希无效。 |
参数历史
- v1.20: 啟用
facontinue
,mediatype
,archivename
- v1.18: 啟用
fato
,fasha1
,fasha1base36
,parseddescription