module Feedlr::Gateway::Streams

Streams API

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

Public Instance Methods

stream_entries_contents(stream_id , options = {}) click to toggle source

Get the content of a stream

@see developer.feedly.com/v3/streams/#get-the-content-of-a-stream @param stream_id [String] @param options [Hash] @option options [String] :count mber of entry ids to return.

default is 20. max is 10 , 000

@option options [String] :ranked newest or oldest. default is newest @option options [String] :unreadOnly boolean default value is false @option options [String] :newerThan timestamp in ms @option options [String] :continuation a continuation id

is used to page through the entry ids

@return [Feedlr::Base]

# File lib/feedlr/gateway/streams.rb, line 36
def stream_entries_contents(stream_id , options = {})
  build_object(:get, "/streams/#{CGI.escape(stream_id)}/contents",
               options)
end
stream_entries_ids(stream_id , options = {}) click to toggle source

Get a list of entry ids for a specific stream

@see developer.feedly.com/v3/streams/#get-a-list-of-entry-ids-for-a-specific-stream @param stream_id [String] @param options [Hash] @option options [String] :count mber of entry ids to return.

default is 20. max is 10,000

@option options [String] :ranked newest or oldest. default is newest @option options [String] :unreadOnly boolean default value is false @option options [String] :newerThan timestamp in ms @option options [String] :continuation a continuation id is

used to page through the entry ids

@return [Feedlr::Base]

# File lib/feedlr/gateway/streams.rb, line 20
def stream_entries_ids(stream_id , options = {})
  build_object(:get , "/streams/#{CGI.escape(stream_id) }/ids" , options)
end