How can I use MediaWiki's API to get all the pages in a specific category?
-
Here is what I tried and it shows nothing: http://en.wikipedia.org/w/api.php?action=query&list=allpages&format=xml&apfilterredir=all&aplimit=10&generator=categories&gcllimit=10&gclcategories=Chemistry
-
Answer:
You're using "list=allpages", when you should be using "list=categorymembers". Here's the documentation: https://www.mediawiki.org/wiki/API:Categorymembers. Try something more like this instead: http://en.wikipedia.org/w/api.php?action=query&list=categorymembers&cmtitle=Category%3AChemistry&cmtype=page&cmlimit=50&format=jsonfm A few caveats: This query returns only immediate children of the given category. You may want to use another query with cmtype=subcat to help pick out members of child categories. Using cmtype=page as I did here is broad: it includes more than just articles, so Category:Chemistry will also have you pick up pages like "Portal:Chemistry" that you might not want. You may want to use cmnamespace=0 instead. There's a limit on how many items you can retrieve per queryĆ¢50 unless your account has the "sysop" or "bot" permissions, in which case it increases to 500. Use the continue parameters to retrieve more if you need more.
Mark Hetherington at Quora Visit the source
Other answers
Autolist is a very easy solution for you and provides some possibilities to export the output : http://tools.wmflabs.org/wikidata-todo/autolist.html
Paul-Antoine Chevalier
Related Q & A:
- How can I use a button to retrieve a phone 'number' from contacts?Best solution by Stack Overflow
- How Can I Use A Picture For My Avatar?Best solution by Yahoo! Answers
- How can I use my PC with a wireless printer?Best solution by pcmag.com
- How can i use my laptop as a monitor for my xbox 360?Best solution by Yahoo! Answers
- Can I use my Military ID to get a Passport?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.