API talk:Properties

From MediaWiki.org
Jump to: navigation, search

Contents

[edit] Getting revision content only via revid

Is it possible to get the content of a revision only by a given revid? - It seams, that query / prop=revision could only search to revisions by a given revid AND pagetitle: f.e.: /w/api.php?action=query&prop=revisions&format=json&rvprop=timestamp%7Cuser%7Ccontent&rvlimit=10&rvstartid=100787171&titles=Benutzer%20Diskussion%3AFrieder5280

Result: Revision including Content But i want to get the revision-content only by a given revid (f.e.: 100787171).

Thanks.

Frieder5280 (talk) 14:47, 12 March 2012 (UTC)

[edit] Suggestion for including thumbnail location

Within <imageinfo>, I suggest (for this example):

<thumbnail url_before="http://upload.wikimedia.org/wikipedia/commons/thumb/3/37/PassifloraCaerulea-flower-1m.jpg/" url_after="px-PassifloraCaerulea-flower-1m.jpg">

which would allow to append the two url fragments with the width in pixel in between. Maybe add a "default='90'" attribute, containing the actual width (in pixel) of the tumbnail used for image thumbnail links and galleries. That would ensure that no needless recreation of the thumbnail would occur, and that the thumbnail is available fast (and fits in a 120x120 div or td :-) To match this, "iiprop=thumb". --Magnus Manske 21:47, 8 July 2007 (UTC)

I don't think it will be wise to expose how images are actually stored on the server - it will force us to always use the same storage schema. What is the actual goal you are trying to achieve? To allow clients to get resized image? --Yurik 22:04, 8 July 2007 (UTC)
I think this is a great idea. It would allow third party tools that manage images on the wiki to get a preview, which is useful for all sorts of things. For example, an image insertion wikitext helper written in javascript.
Yes, this exposes our storage schema, but it actually makes it easier to change the scheme in future, because the API just has to use the new scheme and all the tools using it will reflect that. Without the API to bridge image names and their thumbnail storage, any third party tools would have to be intimately knowledgeable of our thumbnail storage scheme because the only way they can get the images is to reimplement the directory algorithm. Jim Higson 11:33, 21 August 2007 (UTC)
On reflection, something like this might be better (Using Magnus's example image again)
<thumbnail url="http://upload.wikimedia.org/wikipedia/commons/thumb/3/37/PassifloraCaerulea-flower-1m.jpg/$1-PassifloraCaerulea-flower-1m.jpg" />
(where $1 is a placeholder for the size)
Which is nice because it shares a pattern with how we represent interwiki addresses, and we aren't stuck with using a "before bit" and an "after bit" if we later change the URL scheme for thumbnails. Jim Higson 11:48, 21 August 2007 (UTC)

[edit] Getting Page Restrictions

Is it possible to add the 'page restriction' columns to the query report? [user:jldupont|Jean-Lou Dupont]

Already done: http://en.wikipedia.org/w/api.php?action=query&prop=info&titles=Main%20Page&inprop=protection --Yurik 01:54, 11 July 2007 (UTC)
At some point, can we get documentation on here regarding the inprop=protection function? -- SatyrTN 03:45, 3 September 2007 (UTC)

[edit] Links query and redirects

Hi,

It seems that the links query for a redirect page returns a non-empty list of links (it includes the redirects). Is it normal ? The old query.php API wasn't returning this.

--NicoV 17:46, 15 July 2007 (UTC)

Yes, because it is impossible at this point to determine which of the links from a redirect page are redirect trgets, and which links are simple page links. --Yurik 19:14, 16 July 2007 (UTC)
Ah, too bad. More work for me to deal with this ;) --NicoV 19:36, 16 July 2007 (UTC)

[edit] img_sha1

It would be useful to add img_sha1 to imageinfo. Bryan Tong Minh 22:07, 29 August 2007 (UTC)

[edit] Limits?

The "limits" on this page appear to be erroneous. For example this query returns 1,373 links (as of the time this was written), even though the documentation says there is a limit of "200/1000". And, really, that's how it should be, since the limits are intended for the "list=" type of queries, not "prop=". --Russ Blau 21:13, 22 October 2007 (UTC)

Limit applies to the number of pages that the given option will work for, not the number of items for a given page. For example, prop=links will work only if the links are requested for fewer pages then the limit. --Yurik 22:55, 28 October 2007 (UTC)

[edit] Category members

I can see how to get which categories a page is in, but how would I get all the pages that are members of a specific category? — Timotab 04:07, 30 October 2007 (UTC)

See list=categorymembers. --Yurik 07:13, 3 November 2007 (UTC)

[edit] extlinks / link text

it'd be great if the link text could be displayed when using extlinks.

if this is currently doable with MW 1.11.0 (via xml or json) could someone describe how?

thanks.

Unfortunately, no. That information isn't stored in the database, so there's no efficient way to retrieve it. --Catrope 21:35, 23 February 2008 (UTC)

[edit] Wiktionary links ?

Hi,

is there a simple way to get wiktionary links or interwiki links (other than language links given by langlinks query) ?

--NicoV 10:44, 29 December 2007 (UTC)

Unfortunately not. If you really, desperately wanna know, you'll have to parse the page content (obtainable through prop=revisions&rvprop=content). --Catrope 12:50, 29 December 2007 (UTC)
Thanks for the answer but that's really not simple : I need to call expandtemplates to have all the templates expanded and then parse the result. Could a feature like this be added in a future release ?
My need is for a tool helping for fixing disambiguation links: when the dab page contains a link to a wiktionary page, then this link can also be used for fixing links to that dab page. --NicoV 23:19, 29 December 2007 (UTC)

[edit] links query and anchors

Hi, if a page contains [[link#anchor|text]], is there a way for the links request to return the anchor information ? --NicoV 19:24, 23 February 2008 (UTC)

Short answer: No.
Long answer: unfortunately, that information is not stored in the database, so it would be ridiculously expensive to parse the entire page just for that. --Catrope 21:31, 23 February 2008 (UTC)
Ok, thanks, I was afraid of that. --NicoV 22:09, 23 February 2008 (UTC)

[edit] sort revisions

Hi folks,

I want to sort revisions by listing (ArticleA|ArticleB|ArticleC|...) not by alphabetic order if the 'title' is this possible? merci & VanGore 21:42, 29 September 2008 (UTC) (importet from [[Talk:API:Query - Properties/es|es]], sorry VanGore 16:34, 2 October 2008 (UTC))

[edit] Category id

Hi

It would be great to have category ids in <cl /> tags, and not only the category names, which can be quite complicated to handle in some cases (encoding issues etc.). Is it likely to be implemented in the near future?

Example:

http://en.wikipedia.org/w/api.php?action=query&titles=Category:Philosophy&prop=categories

<xml version="1.0">
<api>
  <query>
    <pages>
      <page pageid="691810" ns="14" title="Category:Philosophy">
        <categories>
          <cl pageid="1111" ns="14" title="Category:Abstraction" />
          <cl pageid="2222" ns="14" title="Category:Belief" />
          <cl pageid="3333" ns="14" title="Category:Culture" />
          <cl pageid="4444" ns="14" title="Category:Humanities" />
        </categories>
      </page>
    </pages>
  </query>
</api>

[edit] PageId of deleted pages ?

Hi,

Is there a way to get the pageid of a deleted page ? A request like this one returns the page id only if the page is still existing.

I'd like to retrieve this because the Check Wikipedia project uses this information to identify a page. See for example, the done button calls an url with the page id. In my tool, I'd like to call this url when the error is fixed, but I can't get the pageid from the API.

Thanks, --NicoV 11:59, 4 April 2010 (UTC)

[edit] Is it mandatory that a title be provided when using prop=revisions?

Or is there a way to get it to work when only revision IDs are provided? Thanks, Tisane 11:57, 13 May 2010 (UTC)

Did you try http://en.wikipedia.org/w/api.php?action=query&revids=691810&prop=revisions and see what happens? --R'n'B 18:29, 13 May 2010 (UTC)
Ah, yes, that works great! http://en.wikipedia.org/w/api.php?action=query&revids=691810&prop=revisions&rvprop=ids%7Cflags%7Ctimestamp%7Cuser%7Ccomment%7Ccontent That's just what I needed. Thanks, Tisane 23:36, 13 May 2010 (UTC)

[edit] Duplicates - commons vs. wikipedia

I notice the duplicates part of the API doesn't include the feature available on the standard interface at WP. w:File:AlCole.JPG for example, has the following listed on the standard interface: The following file is a duplicate of this file (more details):

However the query returns nothing: [1]. Magog the Ogre 00:45, 19 October 2010 (UTC)

Perhaps a new XML field like <commonsduplicates> would be useful. In any case, the work around of course is to gather the hash on en.wp then use allimages on commons. Magog the Ogre 03:56, 19 October 2010 (UTC)

[edit] info / in

Unless I'm missing something (like a mis-implementation I'm unaware of), the info property was available as of MW 1.8, not MW 1.9 as indicated on the page. Can someone confirm this? The parameters look to have only been added in 1.11, though. RobinHood70 23:30, 11 November 2010 (UTC)

Using the example, I'm seeing the following properties by default (not those listed):

  • "pageid": 736,
  • "ns": 0,
  • "title": "Albert Einstein",
  • "touched": "2011-07-10T23:01:21Z",
  • "lastrevid": 438818714,
  • "counter": "",
  • "length": 93725

Is this the new default list? --Dmb 21:21, 11 July 2011 (UTC)

[edit] links / pl

Are links occurring in templates included in api call results? --Smihael 09:21, 6 August 2011 (UTC) I checked, they are. --Smihael 09:25, 6 August 2011 (UTC)

Personal tools
Namespaces

Variants
Actions
Navigation
Support
Download
Development
Communication
Print/export
Toolbox