我正在尝试制作类似于个人电视指南的东西,它将显示 HIMYM 和 TBBT 的最后一集的标题和播出日期。
作为这些信息的资源,我决定使用维基百科。我知道 Wikipedia 有它自己的 API,我已经浏览了很长一段时间的文档,但它真的很广泛,我不知道从哪里开始。到目前为止,我已经到了查询这个 URL 的地步:
http://en.wikipedia.org/w/api.php?action=query&title=List_of_How_I_Met_Your_Mother_episodes&prop=info&format=dbg
并接收以下数组:
array (
'query' =>
array (
'pages' =>
array (
6048517 =>
array (
'pageid' => 6048517,
'ns' => 0,
'title' => 'List of How I Met Your Mother episodes',
'touched' => '2011-01-25T15:33:45Z',
'lastrevid' => 409077359,
'counter' => 0,
'length' => 4417,
),
),
),
)
问题是我不知道如何获得我正在寻找的实际数据:/也许有人对维基百科 API 有更多的经验,并且可以以某种方式帮助我解决这个问题。谢谢