Module: Feedlr::Gateway::Streams
- Included in:
- Client
- Defined in:
- lib/feedlr/gateway/streams.rb
Overview
Streams API
Instance Method Summary collapse
-
#stream_entries_contents(stream_id, options = {}) ⇒ Feedlr::Base
Get the content of a stream.
-
#stream_entries_ids(stream_id, options = {}) ⇒ Feedlr::Base
Get a list of entry ids for a specific stream.
Instance Method Details
#stream_entries_contents(stream_id, options = {}) ⇒ Feedlr::Base
Get the content of a stream
36 37 38 39 |
# File 'lib/feedlr/gateway/streams.rb', line 36 def stream_entries_contents(stream_id , = {}) build_object(:get, "/streams/#{CGI.escape(stream_id)}/contents", ) end |
#stream_entries_ids(stream_id, options = {}) ⇒ Feedlr::Base
Get a list of entry ids for a specific stream
20 21 22 |
# File 'lib/feedlr/gateway/streams.rb', line 20 def stream_entries_ids(stream_id , = {}) build_object(:get , "/streams/#{CGI.escape(stream_id) }/ids" , ) end |