What kind of entries Feedjira has?

590 views Asked by At

I started to use feedjira. I'm getting entries from url:

feed = Feedjira::Feed.fetch_and_parse(self.url)

puts "Fetching from #{self.url}"

feed.entries.each do |entry|
  unless Feed.exists? guid: entry.id
    newFeed = Feed.create(name: entry.title,
                          summary: entry.summary,
                          url: entry.url,
                          published_at: entry.published,
                          guid: entry.id)

    self.feeds << newFeed
  end
end

I found these entries from tutorials. I haven't found entries from documentation. Are there any other entries that I can get from url like categories?

1

There are 1 answers

5
Ivan Chau On BEST ANSWER

From the source of feedjira, category is defined as categories for RSS feed.

elements :category, :as => :categories

The type of available elements depends on the source of the feed. (Atom/iTunes/FeedBurner)

So you can use author, content, updated, and image for RSS feed.