module Feedlr::Gateway::Mixes

Mixes API

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

Public Instance Methods

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

Get a mix of the most engaging content available in a stream

@see developer.feedly.com/v3/mixes/#get-a-mix-of-the-most-engaging-content-available-in-a-stream @param stream_id [String] @param options [Hash] @option options [String] :count number of entry ids to return.

default is 3. max is 20

@option options [String] :unreadOnly boolean default value is false @option options [String] :hours hour of the day @option options [String] :newerThan timestamp in ms @option options [String] :backfill if “hours” is provided,

and there aren't enough articles to match the entry count requested,
the server will look back in time to find more articles.
Articles from the first n hours will be returned first

@option options [String] :locale preferred locale for results @return [Feedlr::Base]

# File lib/feedlr/gateway/mixes.rb, line 23
def stream_most_engaging(stream_id , options = {})
  build_object(:get, '/mixes/contents',
               { streamId: stream_id }.merge(options))
end