How to get all Wikipedia article titles with Media

2019-08-13 05:44发布

I know you can get all titles from Wikipedia's Database dump and that you can query for specific titles, but how can you get them all through the MediaWiki API?

1条回答
霸刀☆藐视天下
2楼-- · 2019-08-13 05:56

For that you would use the Allpages API:

https://en.wikipedia.org/w/api.php?action=query&format=json&list=allpages&aplimit=max

You will not get all at once but up to 500 at a time and then a continuation marker which you can use for next batch of titles. Continue this until the JSON does not have query-continue in the beginning of the answer.

查看更多
登录 后发表回答