Ger Wikipedia 页面内容与介绍使用 API

Ger Wikipedia Page Content with Introduction Using API

我正在尝试使用 API 获取带有摘要的页面内容,如下所示:

https://ar.wikipedia.org/w/api.php?action=query&format=xml&titles=pageTitle&redirects&prop=pageprops|categories|extracts&exintro=|revisions&rvprop=size|user|content&cllimit=500

extracts&exintro=: 介绍部分 修订:内容 但是,此查询没有 return 简介部分,并引发了以下错误: Unrecognized parameter: rvprop.

我认为您误解了如何将 prop=extracts&exintro= 添加到现有查询。您不能只在现有 prop= 值的中间添加 &exintro=,它必须是分开的:

https://ar.wikipedia.org/w/api.php?action=query&format=xml&titles=pageTitle&redirects&prop=pageprops|categories|extracts|revisions&exintro=&rvprop=size|user|content&cllimit=500