I've been trying to understand the MediaWiki documentation for the past 2 days and I can't figure out how to retrieve the first paragraph of a Wikipedia article through the MediaWiki API.

Could someone point me to the right direction?

I am about to appeal to file_get_contents, but I'm confident there's a "cleaner" solution.

link|improve this question

60% accept rate
have you trying their sandbox? – yoavmatchulsky Feb 22 at 12:03
After having another look at it, you don't need the API to just view the page and take the first paragraph. – yoavmatchulsky Feb 22 at 12:09
feedback

2 Answers

up vote 0 down vote accepted

Don't try to use the raw API, instead use a client wrapper. Here's a long list to choose from, all for PHP:

http://en.wikipedia.org/wiki/Wikipedia:PHP_bot_framework_table

link|improve this answer
feedback

file_get_contents is pretty clean, you get the HTML code. You can then parse the html code using DOMDocument. DOMDocument works as javascript, you can fetch all <p>'s in a div for example. Or grab the first one.

for example:

$html = file_get_contents('the url');

$dom = new DomDocument();
@$dom->loadHTML($html);

$p = $dom->getElementsByTagName('p')->item(0)->nodeValue;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.