正在寻找一个 wikipedia api 可以为我提供 XML 格式的文章
我正在寻找一个维基百科 api,它可以为我提供相应查询的文章(无图像)。
我已经看到 wikipedia api 与 actions=opensearch
和 query=search
一起使用。
请告诉我哪一个是正确的,或者是否还有我应该使用的其他操作
。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 WikiMedia API 帮助 或 完整文档。
目前尚不清楚您希望返回什么内容,是文章还是搜索结果。无论哪种方式,要获取 xml 格式的结果,请使用
format=xml
。要获取与特定查询匹配的文章列表,请使用
opensearch
操作。例如:http://en.wikipedia.org/w/api.php?action=opensearch&search=MediaWiki&format=xml
- 查看结果从 action=opensearch 部分href="http://en.wikipedia.org/w/api.php" rel="nofollow">API 帮助:
要获取特定文章的内容,请使用
解析
操作。例如:http://en.wikipedia.org/w/api.php?action=parse&page=MediaWiki&format=xml
- 查看结果从 action=parse 部分href="http://en.wikipedia.org/w/api.php" rel="nofollow">API 帮助:
See the WikiMedia API help or the complete documentation.
It's not clear what you are hoping to have returned to you, an article or search results. Either way, to get results in xml, use
format=xml
.To get a listing of articles that match a certain query, use the
opensearch
action. For example:http://en.wikipedia.org/w/api.php?action=opensearch&search=MediaWiki&format=xml
- View the resultsFrom the section on
action=opensearch
in the API help:To get the contents of a specific article, use the
parse
action. For example:http://en.wikipedia.org/w/api.php?action=parse&page=MediaWiki&format=xml
- View the resultsFrom the section on
action=parse
in the API help: