Thiếu chuyển hướng từ API Wikipedia
Tôi đang cố gắng nhận chuyển hướng cho một trang Wikipedia bằng truy vấn này:
https://en.wikipedia.org/w/api.php?action=query&generator=search&format=json&gsrsearch=iiroc&gsrlimit=10&prop=pageprops|description|redirects&redirects
Như bạn có thể thấy, trang "Tổ chức quản lý ngành đầu tư của Canada" không có chuyển hướng:
"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"
}
Tuy nhiên, nếu đi đến https://en.wikipedia.org/wiki/IIROC Tôi được chuyển hướng đến https://en.wikipedia.org/wiki/Investment_Industry_Regulatory_Organization_of_Canada.
Vậy tại sao "IIROC" không được bao gồm trong chuyển hướng cho "Investment_Industry_Regulatory_Organization_of_Canada"?
Cảm ơn bạn
Trả lời
Bạn nên tiếp tục truy vấn hỗ trợ của mình cho đến khi hoàn tất lô .
Tôi đã đạt được kết quả sau bằng cách tiếp tục truy vấn cho đến khi 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"
}
]
},