WP 解析外壳网址
本文关键字:外壳 WP | 更新日期: 2023-09-27 18:30:36
>我最近使用Windows App Studio Online制作了一个应用程序,令人惊讶的是,该应用程序可以很好地处理RSS提要。我对应用程序进行了一些更改,因为提要包含一个附件 URL,这是一个下载链接。我无法让它检测外壳 URL。我认为我只是表达错误。
我尝试了每个在线RSS源查看器,看看它在雅虎管道中是否看起来有任何不同,它显示为item.enclosure.url,在Code Beauty上它显示为 http://bla.com"/>我尝试了我能想到的所有组合
我还尝试将提要通过雅虎管道给我一个新的提要,并在新标签中带有附件 URL <下载链接>并使用了代码下载链接>
rssItem.FeedUrl = item.GetSafeElementString("downloadlink")
整个应用程序正常工作,所以我知道我唯一做错的事情是保留外壳 URL 雅虎管道的唯一问题是您无法更改我需要做的输入 URL,因此它必须来自附件 URL
所以我的问题是我应该如何检索标签
rssItem.FeedUrl = item.GetSafeElementString("whatgoeshere")
谢谢
这很好用
XElement element = item.Element("enclosure"); //new element
int length = (int)element.Attribute("length"); //seprate attributes
string type = (string)element.Attribute("type");
string url = (string)element.Attribute("url");
rssItem.FeedUrl = url; // use the result