feedly_stream: Retrieve contents of a Feedly "stream"

Description Usage Arguments Value Note References

View source: R/feedly-stream.R

Description

Authorization is optional for this API call unless you are fetching category or tag streams (i.e. a stream for an RSS feed requires no authentication). Pass in NULL to feedly_token to make unauthenticated calls to this API endpoint.

Usage

1
2
3
4
5
6
7
8
feedly_stream(
  stream_id,
  ranked = c("newest", "oldest"),
  unread_only = FALSE,
  count = 1000L,
  continuation = NULL,
  feedly_token = feedly_access_token()
)

Arguments

stream_id

the id of the stream

ranked

one of "newest" or "oldest" (date order sort return). Default is "newest".

unread_only

if TRUE will only return unread itemm (default is FALSE)

count

numnber of items to retrieve (API will only return a max of 1,000 items for a single response and populate continuation with a value that should be passed to subsequent calls to page through the results; count will be reset to 1,000 internally if this is the case)

continuation

pagination parameter (retrieved from previous API call)

feedly_token

Your Feedly Developer Access Token (see feedly_access_token())

Value

This endpoint returns a list with the following entries:

The items component is a data frame of "entries" that roughly follow the Atom format. Here is a list of fields you can expect to receive (NOTE! the number of fields returned is variable (said variable entries will have and "optional" in the description below) so you need to test for the presence of a column before using it in your code):

Note

Feed ids, category ids, tag ids or a system category id can be used as stream ids.

References

(https://developer.feedly.com/v3/streams/)


hrbrmstr/seymour documentation built on Jan. 24, 2020, 11:27 a.m.