How can I pass several pages in one request? Is it possible?
Topic on API talk:Langlinks
Appearance
Just add pipes between the page names. So, for example: https://www.mediawiki.org/w/api.php?action=query&prop=langlinks&titles=Mediawiki|API:Main%20page|Project:About&lllimit=500
Thank you. Not sure this is right place to report the bug, but. I make next query: https://ru.wikipedia.org/w/api.php?format=xml&action=query&prop=langlinks&lllimit=500&titles=1977%20%D0%B3%D0%BE%D0%B4%7C1988%20%D0%B3%D0%BE%D0%B4%7C1999%20%D0%B3%D0%BE%D0%B4 and it returns not all langlinks for 1988 year. It does no return "uk" langlink, although it is there.
Wikipedia limits the number of results returned for any given query. To get the rest of the results, look at the <continue> result near the top and add all those parameters to your next query. So, that ends up like this: https://ru.wikipedia.org/w/api.php?format=xml&action=query&prop=langlinks&lllimit=500&titles=1977%20%D0%B3%D0%BE%D0%B4%7C1988%20%D0%B3%D0%BE%D0%B4%7C1999%20%D0%B3%D0%BE%D0%B4&llcontinue=2715%7Cln&continue=%7C%7C
If there had been another <continue> in those results, then you'd put those values instead of the previous ones, but since there isn't, you know you're done.
Was that supposed to be on ru.wikipedia.org? Because if I do that, I get lllang results as expected.
Yes, that supposed to be articles from ruwiki.
Thank you.