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.
例如,以下示例代码返回 0:
require 'feedjira' feed_parsed = Feedjira::Feed.fetch_and_parse("https://news.yahoo.com/rss/topstories") puts feed_parsed
将 ssl_verify_peer 设置为 false 并成功访问该文件。例如:
require 'feedjira' feed_parsed = Feedjira::Feed.fetch_and_parse("https://news.yahoo.com/rss/topstories", {:ssl_verify_peer => false}) puts feed_parsed