API:Pomoc
Ta strona jest częścią dokumentacji API akcji MediaWiki. |
Wersja MediaWiki: | ≥ 1.8 |
GET request to display help for the specified modules.
Dokumentacja API
Przykład
Żądanie GET
Uzyskaj pomoc dla określonego modułu.
Odpowiedź
{
"help": {
"mime": "text/html",
"filename": "api-help.html",
"help": "<!DOCTYPE html>\n<html class=\"client-nojs\" lang=\"en\" dir=\"ltr\">\n<head>\n<meta charset=\"UTF-8\"/>\n<title>MediaWiki API help - Wikipedia</title>\n<script>document.documentElement.className=\"client-js\";RLCONF={\"wgBreakFrames\":!0,\"wgSeparatorTransformTable\":[\"\",\"\"],\"wgDigitTransformTable\":[\"\",\"\"],\"wgDefaultDateFormat\":\"dmy\",\"wgMonthNames\":
...
}
}
Przykładowy kod
Python
#!/usr/bin/python3
"""
get_help.py
MediaWiki API Demos
Demo of `Help` module: Get help for a specified module.
MIT License
"""
import requests
S = requests.Session()
URL = "https://en.wikipedia.org/w/api.php"
PARAMS = {
"action": "help",
"modules": "query+tokens",
"wrap": "",
"format": "json"
}
R = S.get(url=URL, params=PARAMS)
DATA = R.json()
print(DATA)
PHP
<?php
/*
get_help.php
MediaWiki API Demos
Demo of `Help` module: Get help for a specified module.
MIT License
*/
$endPoint = "https://en.wikipedia.org/w/api.php";
$params = [
"action" => "help",
"modules" => "query+tokens",
"wrap" => "",
"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_help.js
MediaWiki API Demos
Demo of `Help` module: Get help for a specified module.
MIT License
*/
var url = "https://en.wikipedia.org/w/api.php";
var params = {
action: "help",
modules: "query+tokens",
wrap: "",
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_help.js
MediaWiki API Demos
Demo of `Help` module: Get help for a specified module.
MIT License
*/
var params = {
action: 'help',
modules: 'query+tokens',
wrap: '',
format: 'json'
},
api = new mw.Api();
api.get( params ).done( function ( data ) {
console.log( data );
} );
Możliwe błędy
Kod | Info |
---|---|
badmodule | The module name does not have a submodule "name2". |
Historia parametrów
- v1.25: Wprowadzono
submodules
,recursivesubmodules
,wrap
,toc
- v1.25: Usunięto
querymodules
- v1.21: Przestarzałe:
querymodules
- v1.17: Wprowadzono
action
,format
,main
Zobacz też
- API:Strona główna - provides an overview of the MediaWiki action API.
- API:FAQ - provides answers to some frequently asked questions about the MediaWiki Action API.