Tagged Questions

Related to the use of the MediaWiki API on Wikipedia. Consider also the tags [wikipedia] if your question isn't about the API or [mediawiki-api] if your question isn't about Wikipedia.

learn more… | top users | synonyms

5
votes
1answer
404 views

pass session cookies in http header with python urllib2?

I'm trying to write a simple script to log into Wikipedia and perform some actions on my user page, using the Mediawiki api. However, I never seem to get past the first login request (from this page: ...
4
votes
1answer
377 views

What is wikipedia pageid? how to change it into real page url?

I am study wikipedia api, some demo api call so what is the pageid? how to change it into real page url? I mean <page pageid="18630637" ns="0" title="Translation" />, how to change 18630637 ...
4
votes
2answers
286 views

How to get all article pages under a Wikipedia Category and its sub-categories

I want to get all the articles names under a category and its sub-categories. Options I'm aware of: Using the Wikipedia API. Does it have such an option?? d/l the dump. Which format would be ...
4
votes
2answers
231 views

Wikipedia : How “Did you mean” works and how to exploit it?

I want to know how does the "Did you mean : ..." of Wikipedia works and if there's a way, like with the API, to use it? Because I want to get the corresponding page from my input but this one could ...
3
votes
2answers
40 views

When using the Wikipedia API, how to retrieve the style sheets?

I am trying to use the Wikipedia API to get HTML content from Wikipedia. I can't find the correct way to embed this. Since styles are not expanded, I woudld imagine I would need to specify the ...
3
votes
1answer
63 views

Wikipedia query returns error 403

I'm querying Wikipedia using the following code, but I always get an error (403 forbidden). When I type the exact same url in my browser, however, it works. I've been using the same code before to ...
3
votes
1answer
61 views

how to get search result from Wikipedia

I am using EditTextView , where user enter some text and make a search. I want to search the Wikipedia for and get result against the text. How to I can search a query from Wikipedia. I found the ...
3
votes
2answers
366 views

Wikipedia API for geolocations

Is it possible, using the existing Wikipedia API's to get a list of articles around a Geo-location? Sort of like how Google maps does it? I would like to say that I am "here" and find out what is ...
2
votes
1answer
31 views

Setting “an informative User-Agent string” in getURL

I am trying to access a Wikipedia page so to get a list of pages, and get the following error: library(RCurl) u <- ...
2
votes
1answer
31 views

Count wikipedia results

I'd like to get the number of Wikipedia pages matching a condition. e.g. "house" --> 1,200 pages "man" --> 13,000 pages "university college" --> 360 pages Among many other ways, I can do this by ...
2
votes
1answer
242 views

How to get Wikipedia content using Wikipedia API?

I want to get the first paragraph of a Wikipedia topic content. What is the API query to do so?
2
votes
2answers
142 views

“En dash” being garbled during http response handling or text manipulation

I'm writing code to work with text from Wikipedia and am having issues with en dashes being garbled. I haven't worked with en dashes or other non-standard characters before (non-standard to me being ...
2
votes
1answer
426 views

PHP + Wikipedia: Get content from the first paragraph in a Wikipedia article?

I’m trying to use Wikipedia’s API (api.php) to get the content of a Wikipedia article provided by a link (like: http://en.wikipedia.org/wiki/Stackoverflow). And what I want is to get the first ...
2
votes
2answers
496 views

How to get HTML content text of a Wikipedia Page (via Wikipedia API)?

i just want to get content (no link, no categories, no images...just text)
2
votes
1answer
349 views

How to get specific content from wikipedia?

I'm trying to make something like a personal TV guide which will display the title and the airdate of the last available episode of H.I.M.Y.M and TBBT. As a resource for this information I decided to ...
2
votes
1answer
602 views

Link terms on page to Wikipedia articles in pure JavaScript

While browsing I came across this blog post about using the Wikipedia API from JavaScript, to link a single search term to it's definition. At the end of the blog post the author mentions possible ...
2
votes
4answers
506 views

How does Wikipedia avoid duplicate entries?

How can websites as big as Wikipedia sort duplicated entries out? I need to know the exact procedure from the moment that user creates the duplicate entry and so on. If you don't know it but you know ...
1
vote
3answers
65 views

Is there a clean wikipedia API just for retrieve content summary?

I need just to retrieve first paragraph of a Wikipedia page. Content must be html formated, ready to be displayed on my websites (so NO BBCODE, or WIKIPEDIA special CODE!)
1
vote
1answer
33 views

Distinguish Wikipedia Disambiguations from Normal Pages

Currently, I'm attempting to retrieve the content of a given Wikipedia page to a plain text file. Using XPath, I have code that does this perfectly. However, there is just one simple problem: some ...
1
vote
2answers
95 views

getJSON doesn't return anything in firefox extension

I'm trying to write a firefox extension using jquery to get data from the wikipedia API. I call getJSON like this: jqxhr = ...
1
vote
3answers
179 views

Wikipedia API Autocomplete with Json

How can I implement it in the jQuery Autocomplete? $("#searchForm input").autocomplete({ source: function (request, response) { $.ajax({ url: ...
1
vote
2answers
75 views

Rails + MediaWiki API for Wikipedia data extraction

I am trying to use Rails to extract data from Wikipedia, based on a search item. For example, 1) if I have the String "American Idol", I want to pass that to Wikipedia and get a list of the ...
1
vote
1answer
121 views

How to parse Wikipedia API Content Data

I'm finally successful in pulling data using the Wikipedia API, but there's something I really don't understand, and I can't seem to find the answer. I'm using this to query data: var title = ...
1
vote
1answer
73 views

mediawiki api: how to get infobox from a wikipedia article

wikipedia articles may have infobox tags. By the following call I can get the first section of an article which includes infobox. ...
1
vote
1answer
71 views

Download Images from wikipedia by Music Category and Handling Updates

I am trying to get Music Artist images and Album Art information from Wikipedia. Has anyone tried this before? I searched around and found few links with relevant information ...
1
vote
1answer
81 views

JSONP not working on the page

I have a page where i am using the wikipedia api. But since i cannot use JSON for cross domain restrictions i use JSONP. My code looks like this <body> <script type="text/javascript"> ...
1
vote
1answer
68 views

How to extract statistics from Wikipedia?

I want to extract a list of all dead people in Wikipedia and compare their ages when they died. All dead people in Wikipedia has the following fields filled: | birth_name = Thomas Alva Edison | ...
1
vote
1answer
56 views

Writing to a Wiki

I need to write a script that writes (appends) data to an internal wiki that isn't public (needs username and password but unencrypted, http not https). The script can be a shell script, a Perl ...
1
vote
1answer
125 views

Parsing Wiki API content

I have this wiki from the API http://fr.wikipedia.org/w/api.php?action=query&titles=%C9rythropo%EF%E9tine&prop=revisions&rvprop=content&format=xmlfm which I would like to retrieve the ...
1
vote
1answer
274 views

Does the Wikipedia API support searches for a specific template?

Is it possible to query the Wikipedia API for articles that contain a specific template? The documentation does not describe any action that would filter search results to pages that contain a ...
1
vote
1answer
214 views

MediaWiki renderer in Java/Javascript supporting mathematical symbols and formulas

I need a renderer/parser in Javascript or Java for MediaWiki syntax which supports mathematical symbols and formulas.
1
vote
1answer
99 views

MediaWiki api - get last changes

How can i get the list of all pages, that were changed since some date using mediawiki api? EDIT: I have already found this query:) F.e. for wikipedia ...
1
vote
2answers
299 views

wikipedia bots and captcha

I see there are many php (and other) frameworks for writing wikipedia bots, but isn't captcha a problem? Or bots don't have to solve it (but that sounds like there's no point to having captcha in the ...
0
votes
1answer
12 views

How to get the result of “all pages with prefix” using Wikipedia api?

I wish to use Wikipedia api to extract the result of this page: http://en.wikipedia.org/wiki/Special:PrefixIndex When searching "something" on it, for example this: ...
0
votes
1answer
18 views

error in using wikipedia api

i am using wikipedia api to fetch data from wiki pedia but i am getting error here iam posting my code and my error. Please help me. HttpWebRequest myRequest = ...
0
votes
4answers
61 views

How to get results from the Wikipedia API with PHP?

I'm probably not supposed to use file_get_contents() What should I use? I'd like to keep it simple. Warning: ...
0
votes
1answer
44 views

How to get content from the Wikipedia API for a movie?

I tried to get the description of the movie "Your Highness" from the Wikipedia API but it gives me nothing. ...
0
votes
1answer
74 views

What is the best way to parse Wikipedia markup in PHP?

I'm trying to parse specific Wikipedia content in a structured way. Here's an example page: http://en.wikipedia.org/wiki/Polar_bear I'm having some success. I can detect that this page is a "specie" ...
0
votes
1answer
63 views

Converting wikipedia api response using Json.net

I'm querying data using wikipedia api and would like to convert the result into a string[]. The query "test" ...
0
votes
1answer
86 views

access wikipedia API using pywikipedia

I am new to python. I have a task to access wikipedia. For this I am using the client pywikipedia to access mediawiki api. WHen I am running login.py it is asking me password. how will I get the ...
0
votes
0answers
54 views

automate downloading of wikipedia articles using special:export

I want to be able to download full histories of a few thousand articles from http://en.wikipedia.org/wiki/Special:Export and I am looking for a programmatic approach to automate it I started the ...
0
votes
2answers
149 views

bash/curl: two-step web form submission

I'd like to submit two forms on the same page in sequence with curl in bash. http://en.wikipedia.org/w/index.php?title=Special:Export contains two forms: one to populate a list of pages given a ...
0
votes
1answer
19 views

Need to search for a Wikipedia page, based on it's NRHP refnum

I have an application which maintains a table of places registered in the National Registry of Historic places. I'd like to reliably search for one of these places in Wikipedia, given it's NRHP ...
0
votes
1answer
81 views

How to query Wiktionary API

I'd like to get the part of speech and maybe the definition for English words. I found a link like this: ...
0
votes
1answer
81 views

How to get information about Wikimedia image?

I'm trying to retrieve images from wikimedia using the existing api, but there seems to be no logic in what works and what doesn't. Here's what i'm doing/have tried: I'm getting a query of images, ...
0
votes
1answer
97 views

How to converting Wikipedia Article to RSS Feed item

Problem statement: A python script should be created to generate the rss feed of Wikipedia's Featured Articles for several languages. English rss feed exists I need to create similar for other ...
0
votes
0answers
64 views

Rails: mediawiki API, searching wikipedia and generating a link to the search result page

Anyone familiar with using mediawiki API with a rails app? I'm looking to have users create posts, on each post they assign an author_name. I'd like to take the author name and then have it use the ...
0
votes
0answers
56 views

Wikipedia API: how to get the number of revisions of a page?

Anyone know how to get the number of revisions of a wikipedia page using mediawiki API? I have read this API documentation, but can't find the related API: Revision API It should return the number ...
0
votes
1answer
52 views

Wikiquote RSS/Feed for xml parsing

Is there a way to pull quotes from wikiquote via feed/rss? The usage would be for a quote generator. I've checked the source and the link to the feed does not work. It's hard to search for because I ...
0
votes
2answers
96 views

using JSONP with AJAX

I have a page where i am using the wikipedia api. But since i cannot use JSON for cross domain restrictions i use JSONP. Now i can use the api if i query like <script type="text/javascript"> ...

1 2