如何检查 Rss Feed 链接是否有效

发布于 2024-10-30 04:06:58 字数 40 浏览 1 评论 0原文

我想检查提供的 Rss feed 链接是否有效以及它现在是否有效?

I want check that that provided Rss feed Link Is valid or not and is it working right now?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

昇り龍 2024-11-06 04:06:59

只需加载 URL 并检查它是否确实是 RSS 提要。

try {
  var feedDoc = XDocument.Load(url);
  return ValidateRss(feedDoc); // implementation left as an exercise for the reader.
}
catch(HttpException) { // perhaps others
  return false;
}

Just load the URL and check that it is actually an RSS feed.

try {
  var feedDoc = XDocument.Load(url);
  return ValidateRss(feedDoc); // implementation left as an exercise for the reader.
}
catch(HttpException) { // perhaps others
  return false;
}
烙印 2024-11-06 04:06:59

使用下面的代码来检查 RSS URL:

    using System.ServiceModel.Syndication;

    public static bool IsValidFeedUrl(string url)
    {
        bool isValid = true;
        try
        {
            XmlReader reader = XmlReader.Create(url);
            Rss20FeedFormatter formatter = new Rss20FeedFormatter();
            formatter.ReadFrom(reader);
            reader.Close();
        }
        catch
        {
            isValid = false;
        }

        return isValid;
    }

Use below code to check RSS URL:

    using System.ServiceModel.Syndication;

    public static bool IsValidFeedUrl(string url)
    {
        bool isValid = true;
        try
        {
            XmlReader reader = XmlReader.Create(url);
            Rss20FeedFormatter formatter = new Rss20FeedFormatter();
            formatter.ReadFrom(reader);
            reader.Close();
        }
        catch
        {
            isValid = false;
        }

        return isValid;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文