消费来自WikiNews的数据

时间:2009-06-02 22:28:16

标签: c#

我一直在网上搜索,但我似乎找不到任何使用WikiNews数据的例子。他们有一个RSS提要,链接到HTML的各个故事,但我想以XML等结构化格式获取数据。

结构化格式是指每个故事的XML文件,它具有已定义的XML架构(XSD)文件。请参阅:[http://www.w3schools.com/schema/schema_intro.asp][2]

有没有人写过一个消费来自WikiNews的故事的节目?他们有记录的API吗?

我想使用C#收集选定的故事并将它们存储在SQL Server 2008中。

[2]:“结构化格式”是指XML模式(XSD)文件。请参阅:http://www.w3schools.com/schema/schema_intro.asp

3 个答案:

答案 0 :(得分:3)

他们使用的软件has an API但我不确定WikiNews是否支持它。

答案 1 :(得分:0)

他们的Feed:http://feeds.feedburner.com/WikinewsLatestNews

如果你把它放在浏览器中并阅读源代码,你会发现它是XML。 XML包含标题,描述,链接等。只有描述是HTML格式。

以下是回复的开始:

<rss xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"> 
         <channel> 
             <title>Wikinews</title> 
             <description>Wikinews RSS feed</description> 
             <language>en</language> 
             <link>http://en.wikinews.org</link> 
             <copyright>Creative Commons Attribution 2.5 (unless otherwise noted)</copyright> 
             <generator>Wikinews Fetch</generator> 
             <ttl>180</ttl> 
             <docs>http://none</docs> 
                 <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/WikinewsLatestNews" /><feedburner:info uri="wikinewslatestnews" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by/2.5/</creativeCommons:license><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.</feedburner:browserFriendly><item> 
                     <title>Lufthansa pilots begin strike</title> 
                     <link>http://feedproxy.google.com/~r/WikinewsLatestNews/~3/1K2xloPGlmI/Lufthansa_pilots_begin_strike</link> 
                     <description>&lt;p&gt;&lt;a href="http://en.wikinews.org/w/index.php?title=File:LocationGermany.png&amp;filetimestamp=20060604120306" class="image" title="A map showing the location of Germany"&gt;&lt;img alt="A map showing the location of Germany" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/de/LocationGermany.png/196px-LocationGermany.png" width="196" height="90" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b class="published"&gt;&lt;span id="publishDate" class="value-title" title="2010-02-22"&gt;&lt;/span&gt;Monday, February 22, 2010&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The pilot's union of &lt;a href="http://en.wikinews.org/wiki/Germany" title="Germany" class="mw-redirect"&gt;German&lt;/a&gt; airline &lt;a href="http://en.wikipedia.org/wiki/Lufthansa" class="extiw" title="w:Lufthansa"&gt;Lufthansa&lt;/a&gt; have begun a four-day strike over pay and job security. Operations at subsidiary airlines &lt;a href="http://en.wikipedia.org/wiki/Lufthansa_Cargo" class="extiw" title="w:Lufthansa Cargo"&gt;Lufthansa Cargo&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Germanwings" class="extiw" title="w:Germanwings"&gt;Germanwings&lt;/a&gt; are also affected by the strike.&lt;/p&gt;
&lt;em&gt;&lt;a href='http://en.wikinews.org/wiki/Lufthansa_pilots_begin_strike'&gt;More...&lt;/a&gt;&lt;/em&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/WikinewsLatestNews?a=1K2xloPGlmI:9SJI0YV04-M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WikinewsLatestNews?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WikinewsLatestNews?a=1K2xloPGlmI:9SJI0YV04-M:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WikinewsLatestNews?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/WikinewsLatestNews?a=1K2xloPGlmI:9SJI0YV04-M:YwkR-u9nhCs"&gt;&lt;img src="http://feeds.feedburner.com/~ff/WikinewsLatestNews?d=YwkR-u9nhCs" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</description> 
<guid isPermaLink="false">http://en.wikinews.org/wiki/Lufthansa_pilots_begin_strike</guid> 

<feedburner:origLink>http://en.wikinews.org/wiki/Lufthansa_pilots_begin_strike</feedburner:origLink></item>

答案 2 :(得分:0)

你的问题真的不清楚!但我想你想格式化 WikiNews的提要,以更友好的方式阅读(就像你在WikiNews本身阅读它一样),我是否正确?

如果是这样,那么您必须知道RSS是具有标准格式的XML,并且与WikiNews无关,您可以转换任何 RSS源以显示在-say中 - 带有XSLT的HTML。

如果您需要自己获取故事,可以使用Feed中的给定链接,并将其显示在webbrowser控件中(如果您正在开发Windows应用程序)。

除了我所说的之外,你还需要别的东西吗?