1
我試圖讀取這個ATOM Feed(http://ffffound.com/feed),但我無法獲得任何定義爲命名空間的一部分的值,例如媒體:內容和媒體:縮略圖。用自定義命名空間解析Ruby中的ATOM
我需要讓分析器知道名稱空間嗎?
這裏就是我已經得到了:
require 'rss/2.0'
require 'open-uri'
source = "http://ffffound.com/feed"
content = ""
open(source) do |s| content = s.read end
rss = RSS::Parser.parse(content, false)