Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该如何在 rails 3.1 应用程序中解析 rss 提要。无法找到有关此主题的当前资源。
你需要在你的控制器中:
require 'rss' rss = RSS::Parser.parse(open('http://example.com/feed/posts').read, false)
来自Parsing an RSS feed with Ruby。