I'm querying a media wiki instance which we are running. I'm passing the following parameters for the search

api.php?action=opensearch&search=afg&limit=100&format=xml

I didn't see any way to pass the offset as a parameter. Does anybody know how we can pass a offset or if there is an extension which I can use and query it to return results which can be ingested in to my application

link|improve this question

55% accept rate
feedback

1 Answer

The opensearch api isn't made for contuing queries, so there is no offset parameter.

However, you can use the search module (of action=query) for results like in Special:Search, and there you will have an offset parameter, too.

link|improve this answer
I did take a look at it. I don't get the URL of the document in this search. Is there a way to get the URL to the article as part of the search results ? I didn't see anything mentioned in the docs , unless I'm missing something – allthenutsandbolts Feb 22 at 14:53
1  
You only get pageid and pagetitle, so you will have to build the uri yourself. You can either hardcode that or use meta=siteinfo (in the same query), which will give you the article path variables. – Bergi Feb 22 at 17:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.