MediaWiki API ヘルプ
このページは自動生成された MediaWiki API の説明文書ページです。
説明文書と例: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
list=listwikis (sw)
- このモジュールは読み取りの権限を必要とします。
- ソース: 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
- Type: timestamp (allowed formats)
- swend
The timestamp to end enumerating
- Type: timestamp (allowed formats)
- swdir
列挙の方向:
- newer
- 古いものを先に表示します。注意: swstart は swend 以前でなければなりません。
- older
- 新しいものを先に表示します (既定)。注意: swstart は swend 以降でなければなりません。
- 値 (次の値のいずれか1つ): 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 [サンドボックスで開く]