I'm using Feedzirra to update RSS feeds. I am currently getting thumbnails for individual entries like this.
Feedzirra::Feed.add_common_feed_entry_element("media:thumbnail",:value => :url, :as => :thumbnail)
feed = Feedzirra::Feed.fetch_and_parse("http://somefeed")
entry = feed.entries.first.thumbnail
That works great, but I also want to get the thumbnail of the website each entry is coming from (the icon displayed in the browser next to the URL, usually the company logo). What is the best way to do this?