module Feedlr::Gateway::Feeds

Feeds API

@see developer.feedly.com/v3/feeds/

Public Instance Methods

feed(feed_id) click to toggle source

Get the metadata about a specific feed

@see developer.feedly.com/v3/feeds/#get-the-metadata-about-a-specific-feed @param feed_id [String] @return [Feedlr::Base]

# File lib/feedlr/gateway/feeds.rb, line 12
def feed(feed_id)
  feeds([feed_id]).first
end
feeds(feeds_ids) click to toggle source

Get the metadata for a list of feeds

@see developer.feedly.com/v3/feeds/#get-the-metadata-for-a-list-of-feeds @param feeds_ids [Array] list of ids @return [Feedlr::Collection]

# File lib/feedlr/gateway/feeds.rb, line 21
def feeds(feeds_ids)
  build_object(:post , '/feeds/.mget' , feeds_ids)
end