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 name to generate a wikipedia URL. Wikipedia seems to replace spaces in names and " "s with underscores. I could just manually use something like gsub and replace the spaces with underscores and end up with www.wikipedia.com/author_name, but I wouldn't be a able to verify the address actually exists.

Is there a way to take the author_name string and enter it into the wikipedia search and then have a link on my app that will take users to the wikipedia page that is the result of the searched author_name string?? EDIT: I discovered that if I use the address http://en.wikipedia.org/w/index.php?title=Special:Search&search=stephen+king it will redirect to the http://en.wikipedia.org/wiki/Stephen_King page if there is one and if not it will redirect to a list of search results for that name. This essentially does what I'm looking for but is there a way to use the API and find narrower results, such as if Michael Jordan was also the name of an author. Somehow send a request with the name and keywords such as "author" and "book" to get the correct Michael Jordan wikipedia entry?

Thanks

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.