API:Vyloučení překladu
Tato stránka je součástí dokumentace k API Action MediaWiki. |
Verze MediaWiki: | ≥ 1.24 |
Požadavek GET pro nalezení všech stránek, které dané stránky transklusují.
Dokumentace API
Příklad
Dotazování přes GET
Získejte seznam stránek, které danou stránku přenášejí.
Odpověď
{
"continue": {
"ticontinue": "20832294",
"continue": "||"
},
"query": {
"pages": {
"15580374": {
"pageid": 15580374,
"ns": 0,
"title": "Main Page",
"transcludedin": [
{
"pageid": 1923146,
"ns": 2,
"title": "User:Eloquence/Tour 01"
},
{
"pageid": 5069777,
"ns": 2,
"title": "User:The Captain Returns"
},
{
"pageid": 7023260,
"ns": 2,
"title": "User:Sal's Wrecking Company"
},
...
]
}
}
}
}
Ukázkový kód
Python
#!/usr/bin/python3
"""
get_transcluded_in.py
MediaWiki API Demos
Demo of `Transcludedin` module: Get a list of pages which transclude a given page
MIT License
"""
import requests
S = requests.Session()
URL = "https://en.wikipedia.org/w/api.php"
PARAMS = {
"action": "query",
"titles": "Main Page",
"prop": "transcludedin",
"format": "json"
}
R = S.get(url=URL, params=PARAMS)
DATA = R.json()
print(DATA)
PHP
<?php
/*
get_transcluded_in.php
MediaWiki API Demos
Demo of `Transcludedin` module: Get a list of pages which transclude a given page
MIT License
*/
$endPoint = "https://en.wikipedia.org/w/api.php";
$params = [
"action" => "query",
"titles" => "Main Page",
"prop" => "transcludedin",
"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
/*
get_transcluded_in.js
MediaWiki API Demos
Demo of `Transcludedin` module: Get a list of pages which transclude a given page
MIT License
*/
var url = "https://en.wikipedia.org/w/api.php";
var params = {
action: "query",
titles: "Main Page",
prop: "transcludedin",
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
/*
get_transcluded_in.js
MediaWiki API Demos
Demo of `Transcludedin` module: Get a list of pages which transclude a given page
MIT License
*/
var params = {
action: 'query',
titles: 'Main Page',
prop: 'transcludedin',
format: 'json'
},
api = new mw.Api();
api.get( params ).done( function ( data ) {
console.log( data );
} );
Možné chyby
Kód | Popis |
---|---|
show | Incorrect parameter - mutually exclusive values may not be supplied. |
Další poznámky
- Tento modul lze použít jako zdroj.
Související odkazy
- API:Šablony - Vrátí všechny stránky přeložené na daných stránkách.