Search code examples
mediawiki-api

How to search a word in mediawiki api from a particular page?


How to search a word or words in mediawiki api from a particular page onwards?

I tried api.php?action=query&format=xml&titles=Feature_doc&list=search&srsearch=manage

But it searches from all pages instead of "Feature doc" page onwards.

Please help.


Solution

  • I don't think you can do that easily. You would need to get the text of all pages linked from your page using a query like:

    api.php?action=query&titles=Feature_doc&generator=links&prop=revisions&rvprop=content

    And then manually search the contents for the string.