MediaWiki API 說明

此頁為自動產生的 MediaWiki API 說明文件頁面。

說明文件與範例:https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page

list=listwikis (sw)

main | query | listwikis
  • 此模組需要讀取權限。
  • 來源:ShoutWiki API
  • 授權條款:CC0-1.0

List all available wikis on ShoutWiki

參數:
swwid

Unique, wiki-specific ID number; use this when you want to get info about a specific wiki and you know its ID number

類型:整數
swdeleted

Also list deleted wikis (optional)

類型:整數
數值必須在 0 與 1 之間。
swfrom

Get all wikis with ID that is equal to or greater than this value

類型:整數
數值不可小於 1。
swto

Get all wikis with ID that is equal to or lower than this value

類型:整數
數值不可小於 1。
swcountonly

Return only the amount of wikis

類型:整數
數值不可小於 1。
swlang

Wiki language code (i.e. en for English, fi for Finnish, etc.)

swlimit

Get information about this many wikis at once

類型:整數或max
數值必須在 1 與 500 之間。
預設值:100
swstart

The timestamp to start enumerating from

類型:時間戳記(允許格式
swend

The timestamp to end enumerating

類型:時間戳記(允許格式
swdir

列舉的方向:

newer
最早的優先。注意:swstart應在swend之前。
older
最新的優先(預設)。注意:swstart應在swend之後。
單值:newer、​older
預設值:older
範例:
Get all active wikis
api.php?action=query&list=listwikis [在沙盒中開啟]
Also include deleted wikis in the listing
api.php?action=query&list=listwikis&swdeleted=1 [在沙盒中開啟]
Get information about the wiki whose ID is #177
api.php?action=query&list=listwikis&swwid=177 [在沙盒中開啟]
Get all (active) wikis with IDs ranging from 100 to 150
api.php?action=query&list=listwikis&swfrom=100&swto=150 [在沙盒中開啟]
Show all Finnish (fi) wikis whose IDs range between 10 to 50
api.php?action=query&list=listwikis&swfrom=10&swto=50&swlang=fi [在沙盒中開啟]
Show the total amount of active wikis
api.php?action=query&list=listwikis&swcountonly=1 [在沙盒中開啟]
Show the total amount of all wikis ever, including deleted ones
api.php?action=query&list=listwikis&swactive=1&swcountonly=1 [在沙盒中開啟]