缺少来自维基百科的重定向 API

Missing redirects from Wikipedia API

我正在尝试通过以下查询获取维基百科页面的重定向:

https://en.wikipedia.org/w/api.php?action=query&generator=search&format=json&gsrsearch=iiroc&gsrlimit=10&prop=pageprops|description|redirects&redirects

如您所见,“加拿大投资行业监管组织”页面没有重定向:

            "18847030": {
                "pageid": 18847030,
                "ns": 0,
                "title": "Investment Industry Regulatory Organization of Canada",
                "index": 1,
                "pageprops": {
                    "page_image": "Investment_Industry_Regulatory_Organization_of_Canada_Logo.jpg",
                    "wikibase_item": "Q16987312"
                },
                "description": "organization",
                "descriptionsource": "central"
            }

但是,如果去https://en.wikipedia.org/wiki/IIROC I get redirected to https://en.wikipedia.org/wiki/Investment_Industry_Regulatory_Organization_of_Canada

那么为什么“Investment_Industry_Regulatory_Organization_of_Canada”的重定向中不包含“IIROC”?

谢谢

你应该continue your prop query until the batch is complete.

我通过继续查询直到 https://en.wikipedia.org/w/api.php?action=query&format=json&prop=pageprops%7Cdescription%7Credirects&continue=%7C%7Cpageprops%7Cdescription&generator=search&redirects=1&rdcontinue=Financial_adviser%7C52889338&gsrsearch=iiroc&gsrlimit=10

得到了以下结果
        "18847030": {
            "pageid": 18847030,
            "ns": 0,
            "title": "Investment Industry Regulatory Organization of Canada",
            "index": 1,
            "redirects": [
                {
                    "pageid": 18855542,
                    "ns": 0,
                    "title": "IIROC"
                },
                {
                    "pageid": 18936209,
                    "ns": 0,
                    "title": "Investment Dealers Assocation of Canada"
                },
                {
                    "pageid": 18936308,
                    "ns": 0,
                    "title": "Investment Dealers Assocation"
                },
                {
                    "pageid": 18936769,
                    "ns": 0,
                    "title": "Investment Dealers Association of Canada"
                }
            ]
        },