Is there any API in Java to access wikipedia data

前端 未结 5 1323
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-08 20:17

I want to know: is there any API or a query interface through which I can access Wikipedia data?

5条回答
  •  旧时难觅i
    2020-12-08 20:31

    Mediawiki, the wiki platform that wikipedia uses does have an HTTP based API. See MediaWiki API.

    For example, to get pages with the title stackoverflow, you call

    http://en.wikipedia.org/w/api.php?action=query&titles=Stackoverflow

    There are some (incomplete) Java wrappers around the API - see the Client Code - Java section of the API page for more detail.

提交回复
热议问题