我想在我的iPhone App中手動添加RSS提要URL。有什麼方法來驗證RSS提要。我知道URL的正確驗證可以完成,但是有什麼方法可以確定給定的url是否包含正確的RSS/atom?驗證RSS提要網址
回答
首先,您可以驗證天氣是否有效URL。之後您可以驗證您的響應中的陣列計數。因爲,如果沒有有效的URL,那麼你將不會從響應得到任何數據..
是的,我們可以這樣做...... thnx .. – iCoder4777
: - 別擔心,我會嘗試,如果這個邏輯起作用,或者我不會得到任何其他相關的答案,那麼你的答案將被接受。 – iCoder4777
從http://www.haiders.net/post/C-RSS-Feed-Fetcher-Display-RSS-Feed-with-2-lines-of-Code.aspx
//www.haiders.net | Jan 2010
//C# Example: Fetch and Shape RSS Feed
string rssUri = "http://some.feed.uri.xml";
var doc = System.Xml.Linq.XDocument.Load(rssUri);
var rssFeed = from el in doc.Elements("rss").Elements("channel").Elements("item")
select new { Title = el.Element("title").Value, Link = el.Element("link").Value,
Description = el.Element("description").Value };
//The data is ready, assuming we have a ListView to display the Feed named lvFeed
//Lets bind the Feed to the ListView
lvFeed.DataSource = rssFeed;
lvFeed.DataBind();
//Thats all!
取自http://www.haiders.net/post/C-RSS-Feed-Fetcher-Display-RSS-Feed-with-2-lines-of-Code.aspx – Bart
- 1. RSS提要驗證問題
- 2. 使用PHP獲取RSS提要網址?
- 3. jQuery驗證 - 網址驗證
- 4. 嵌入CDN網址要求驗證碼
- 5. 驗證twitter網址
- 6. 如何驗證網址爲ATOM和RSS feeds
- 7. 有誰知道yFrog RSS提要地址?
- 8. 從RSS提要中獲取圖片網址
- 9. 如何從FeedBurner網址獲取圖像形式的RSS提要?
- 10. Rss提要將網址更改爲項目
- 11. 解析RSS提要 - 檢索圖片,網址?
- 12. Jquery驗證以驗證網址
- 13. 任何現有的RSS提要url驗證器?
- 14. RSS提要驗證器報告錯誤的值是正確的
- 15. Youtube RSS提要
- 16. RSS提要
- 17. 從RSS提要
- 18. 如何驗證網址?
- 19. 使用PHP驗證網址
- 20. IAP收據驗證網址?
- 21. 驗證圖片網址
- 22. 通過Regex驗證網址?
- 23. 驗證互聯網地址
- 24. web2py:SQLFORM網址重複驗證
- 25. 不接受網址驗證
- 26. iOS版驗證RSS
- 27. VBulletin RSS提要到主網站
- 28. 自動將RSS提要提交至RSS提要目錄
- 29. RSS提要字幕
- 30. 解析RSS提要
兩者能否請你告訴我哪個RSS解析器,你正在使用的應用程序? –
就我而言,我從JSON格式的服務器獲取RSS數據,並從那裏解析它 – iCoder4777
@ iCoder4777您應該簡單地解析提要,並且如果您具有所需的元素,則可以推斷出您可能具有合適的RSS/atom 。如果你缺少必要的元素,那麼你不需要。 – Rob