API:Checktoken
Bu sayfa MediaWiki Eylem API'si belgelerinin bir parçasıdır. |
tokens modülünden anahtarın geçerliliğini kontrol etmek için GET isteği. Yalnızca istek anahtarın sahibinden geldiğinde çalışır, üçüncü taraflar tarafından anahtarın geçerliliğini denetlemek için kullanılamaz, bunun için Extension:Third party session verification gibi uzantıları kullanmanız gerekir.
MediaWiki sürümü: | ≥ 1.25 |
API belgesi
Örnek
GET isteği
Bir CSRF anahtarını işaretleyin.
Yanıt
{
"checktoken": {
"result": "invalid"
}
}
Örnek kod
Python
#!/usr/bin/python3
"""
check_token.py
MediaWiki API Demos
Demo of `Checktoken` module: Check a CSRF token.
MIT License
"""
import requests
S = requests.Session()
URL = "https://en.wikipedia.org/w/api.php"
PARAMS = {
"action": "checktoken",
"token": "123ABC",
"type": "csrf",
"format": "json"
}
R = S.get(url=URL, params=PARAMS)
DATA = R.json()
print(DATA)
PHP
<?php
/*
check_token.php
MediaWiki API Demos
Demo of `Checktoken` module: Check a CSRF token.
MIT License
*/
$endPoint = "https://en.wikipedia.org/w/api.php";
$params = [
"action" => "checktoken",
"token" => "123ABC",
"type" => "csrf",
"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 );
echo( $output );
JavaScript
/*
check_token.js
MediaWiki API Demos
Demo of `Checktoken` module: Check a CSRF token.
MIT License
*/
var url = "https://en.wikipedia.org/w/api.php";
var params = {
action: "checktoken",
token: "123ABC",
type: "csrf",
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
/*
check_token.js
MediaWiki API Demos
Demo of `Checktoken` module: Check a CSRF token.
MIT License
*/
var params = {
action: 'checktoken',
token: '123ABC',
type: 'csrf',
format: 'json'
},
api = new mw.Api();
api.get( params ).done( function ( data ) {
console.log( data );
} );
Olası hatalar
Kod | Bilgi |
---|---|
notoken | token parametresi ayarlanmalıdır. |
notype | type parametresi ayarlanmalıdır. |
unknown_type | type parametresi için tanınmayan değer: ###. |