API:Iwlinks
From MediaWiki.org
| Iwlinks | ||
|---|---|---|
| Returns all interwiki links from the given pages. This module cannot be used as a Generator. |
||
| Prefix | iw | |
| Required rights | none | |
| Post only? | No | |
| Generated help | Current | |
| Version added |
|
|
Returns all interwiki links from the given page(s).
Parameters[edit]
iwprop: Which additional properties to get for each interwiki link: Type: multi-valued string (Default: None) 1.24+url: Add the full URL. (Replaces the deprecatediwurlparameter.) 1.24+
iwprefix: Prefix for the interwiki. Type: string 1.18+iwtitle: Interwiki link to search for. Must be used withiwprefix. Type: string 1.18+iwdir: The direction in which to list. Type: string Possible values:ascending,descending. (Default:ascending) 1.19+iwlimit: How many total pages to return. No more than 500 (5000 for bots) allowed. Type: limit (Default: 10)iwcontinue: When more results are available, use this to continue. Type: stringiwurl: Whether to get the full URL. Type: boolean (Default: false) (Deprecated in 1.24)
Example[edit]
Get a list of interwiki links en:Albert Einstein has
| Result |
|---|
{
"query": {
"pages": [
{
"pageid": 736,
"ns": 0,
"title": "Albert Einstein",
"iwlinks": [
{
"prefix": "b",
"title": "Introduction_to_Astrophysics/Albert_Einstein"
},
{
"prefix": "c",
"title": "Special:Search/Albert_Einstein"
},
{
"prefix": "commons",
"title": "Special:Search/Albert_Einstein"
},
{
"prefix": "n",
"title": "Special:Search/Albert_Einstein"
},
{
"prefix": "q",
"title": "Special:Search/Albert_Einstein"
},
{
"prefix": "s",
"title": "Author:Albert_Einstein"
},
{
"prefix": "s",
"title": "The_Development_of_Our_Views_on_the_Composition_and_Essence_of_Radiation"
},
{
"prefix": "v",
"title": "Special:Search/Albert_Einstein"
},
{
"prefix": "wikilivres",
"title": "Special:Search/Albert_Einstein"
},
{
"prefix": "wikiquote",
"title": "Special:Search/Albert_Einstein"
}
]
}
]
}
}
|
Possible errors[edit]
| Code | Info |
|---|---|
| noprefix | The prefix parameter must be set. |