Learn R Programming

tm.plugin.webmining (version 0.9)

GoogleReaderSource: Retrieve feeds through the Google Reader API.

Description

This function utilizes the (unofficial) Google Reader API to retrieve RSS feeds. The advantage of access RSS feeds through the Google Reader API is that you are not limited by the number of entries a website may included in their feed. That is, Google maintains generally maintains a complete history of entries from the RSS feed. Code was partly taken from Jason Bryer http://bryer.org/2012/retrieving-rss-feeds-using-google-reader Note that the contents of the results will be limited by what the website provides in their feeds. That is, Google does not contain more information per entry then what the website originally provided. If the initial feed contained only excerpts of the article, the feed from Google will too only contain excerpts. Be aware though that for sites that do provide the complete contents of posts will result in potentially very large downloads.

Usage

GoogleReaderSource(feed,
    auth.token = auth.google.reader(),
    params = list(n = 100), curlOpts = NULL, ...)

Arguments

feed
url of feed to be retrieved through the Google Reader API
auth.token
Authentification token as retrieved from auth.google.reader
params
Additional parameters for Google Reader API, n (number of items) is already set to 100 (see also note).
curlOpts
RCurl options (as generated by curlOptions). Defaults to NULL (are therefore auto-generated).
...
additional parameters to be used in WebSource