我有一个查询,可以获取 Wikipedia 文章中的所有链接。问题是对于某些页面,它没有返回链接。
这篇维基百科文章有很多链接。但是,我的查询:
仅退货:
<?xml version="1.0"?>
<api>
<query>
<normalized>
<n to="Maramures County" from="Maramures_County"/>
</normalized>
<pages>
<page title="Maramures County" ns="0" pageid="3625444">
<links>
<pl title="Maramureș County" ns="0"/>
</links>
</page>
</pages>
</query>
</api>
如果我对另一篇文章(例如“Moon”)运行相同的查询,我会得到很多结果。
退货
<?xml version="1.0"?>
<api>
<query-continue>
<links plcontinue="19331|0|JSTOR"/>
</query-continue>
<query>
<pages>
<page title="Moon" ns="0" pageid="19331">
<links>
<pl title="3753 Cruithne" ns="0"/>
<pl title="51st state" ns="0"/><pl title="Ablation" ns="0"/>
[ ... etc, etc ...]
我对 API 做错了什么还是这是一个错误?