Difference between revisions of "Wiki API"

From Biowikifarm Metawiki
Jump to: navigation, search
(Created page with 'The MediaWiki software can be used as a service-oriented architecture, providing services to obtain pages as htlm without skin, raw text content, to update information, get lists...')
 
m (160.45.63.55 → 212.201.100.117)
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:
 
Especially useful parameters are:
 
Especially useful parameters are:
  
* action=raw return the text as it is visible in view source or edit mode. Example: http://160.45.63.55/metawiki/index.php?title=Main_Page&action=raw
+
* action=raw return the text as it is visible in view source or edit mode. Example: http://212.201.100.117/metawiki/index.php?title=Main_Page&action=raw
 
* If the page has templates, these can first be expanded by specifying action=raw&templates=expand
 
* If the page has templates, these can first be expanded by specifying action=raw&templates=expand
* action=render returns html, but without toolboxes or skin (and without CSS styling!). Example: http://160.45.63.55/metawiki/index.php?title=Main_Page&action=render
+
* action=render returns html, but without toolboxes or skin (and without CSS styling!). Example: http://212.201.100.117/metawiki/index.php?title=Main_Page&action=render
 
* It can also be used for saving, after obtaining an edit token.
 
* It can also be used for saving, after obtaining an edit token.
  
Line 21: Line 21:
  
 
Examples:  
 
Examples:  
* http://160.45.63.55/metawiki/api.php?action=query&titles=Main_Page does not return the page content, but is useful to test existance!
+
* http://212.201.100.117/metawiki/api.php?action=query&titles=Main_Page does not return the page content, but is useful to test existance!
* To get the content of a page, get the last revision with "content" in revisionproperties: http://160.45.63.55/metawiki/api.php?action=query&prop=revisions&titles=Main_Page&rvprop=timestamp|user|comment|content
+
* To get the content of a page, get the last revision with "content" in revisionproperties: http://212.201.100.117/metawiki/api.php?action=query&prop=revisions&titles=Main_Page&rvprop=timestamp|user|comment|content
 
* To harvest any kind of data from the wiki, list the '''recent changes''' as in: http://en.wikipedia.org/w/api.php?action=query&list=recentchanges&rcprop=title|sizes|user&rclimit=500
 
* To harvest any kind of data from the wiki, list the '''recent changes''' as in: http://en.wikipedia.org/w/api.php?action=query&list=recentchanges&rcprop=title|sizes|user&rclimit=500
 
** Useful parameters are: rclimit: Maximum amount of changes to list (10 by default); rcstart: The timestamp to start listing from; rcend: The timestamp to end listing at; rcprop: Which properties to get (e.g., user, timestamp, ids, content)
 
** Useful parameters are: rclimit: Maximum amount of changes to list (10 by default); rcstart: The timestamp to start listing from; rcend: The timestamp to end listing at; rcprop: Which properties to get (e.g., user, timestamp, ids, content)
 
** It does not seem to be possible to get recentchanges by category, but the category list sorted by last timestamp in the following topic Note: Similar to above, further testing is required to understand whether it is possible to get recent changes only for a category
 
** It does not seem to be possible to get recentchanges by category, but the category list sorted by last timestamp in the following topic Note: Similar to above, further testing is required to understand whether it is possible to get recent changes only for a category
* To '''harvest data by category''', sorted by date of change descending, use, e. g., http://160.45.63.55/metawiki/api.php?action=query&list=categorymembers&cmtitle=Category:Template_documentation&cmsort=timestamp&cmdir=desc
+
* To '''harvest data by category''', sorted by date of change descending, use, e. g., http://212.201.100.117/metawiki/api.php?action=query&list=categorymembers&cmtitle=Category:Template_documentation&cmsort=timestamp&cmdir=desc
** The above can be improved by also outputting the '''timestamp'''; this allows to update harvested data until the date of last harvesting is reached: http://160.45.63.55/metawiki/api.php?action=query&list=categorymembers&cmtitle=Category:Template_documentation&cmsort=timestamp&cmdir=desc&cmprop=title|timestamp. '''Note:''' The timestamp here appears not to represent the date of last change but the creation date of the page.
+
** The above can be improved by also outputting the '''timestamp'''; this allows to update harvested data until the date of last harvesting is reached: http://212.201.100.117/metawiki/api.php?action=query&list=categorymembers&cmtitle=Category:Template_documentation&cmsort=timestamp&cmdir=desc&cmprop=title|timestamp. '''Note:''' The timestamp here appears not to represent the date of last change but the creation date of the page.
  
 
Note: the edit API ''does not use'' xml, but uploads the raw page content directly, very similar to the index.php API!
 
Note: the edit API ''does not use'' xml, but uploads the raw page content directly, very similar to the index.php API!
Line 34: Line 34:
  
 
'''On the current Key to Nature site the API is not usable due to an old version of MediaWiki running. Therefore, the examples currently run against the separate KeyToNature Test wiki.'''
 
'''On the current Key to Nature site the API is not usable due to an old version of MediaWiki running. Therefore, the examples currently run against the separate KeyToNature Test wiki.'''
 +
 +
[[Category: Software documentation]]

Latest revision as of 20:37, 26 February 2015

The MediaWiki software can be used as a service-oriented architecture, providing services to obtain pages as htlm without skin, raw text content, to update information, get lists of categories or links on a page, etc. Creating a bot describes the use of APIs in detail, including how to create and use the edit tokens. A "bot" is a colloquial term for software that works against MediaWiki as a service.

The primary interfaces are the normal index.php (URL-parameter) API and a special API.php interfaces (returning various formats such as xml or JSON).

index.php

See the documentation parameters to index.php.

Especially useful parameters are:

Status of API: Deprecated for software interaction.

api.php

This is a special software API to MediaWiki allowing to login, read, and write pages in xml or json. By default, API is turned on for read and off for write. Most Wikimedia foundation wikis have write API turned on.

Examples:

Note: the edit API does not use xml, but uploads the raw page content directly, very similar to the index.php API!

Status of API: Recommended.

On the current Key to Nature site the API is not usable due to an old version of MediaWiki running. Therefore, the examples currently run against the separate KeyToNature Test wiki.