Exposes a search in the ZEIT online archive on the content endpoint and returns results for the given query.
get_content(query, limit = 10, offset = 0, sort = "release_date asc",
begin_date = NULL, end_date = NULL,
api_key = Sys.getenv("ZEIT_ONLINE_KEY"))
character. Search query term.
integer. The number of results given back. Please use get_content_all
if the limit exceeds 1000 rows.
integer. Offset for the list of matches.
character. Sort search result by various fields. For example: sort=release_date asc, uuid desc
.
character. Begin date - Restricts responses to results with publication dates of the date specified or later. In the form YYYYMMDD.
character. End date - Restricts responses to results with publication dates of the date specified or earlier. In the form YYYYMMDD.
character. The personal api code. To request an API key see: http://developer.zeit.de/quickstart/ This parameter is by default set to the R Environment.
A list including articles and meta information about the query.
get_content
is the function, which interacts directly with the ZEIT Online API. I only used the content endpoint for this package. There are further endpoints (e.g. /author, /product) not included into this package to further specify the search if needed. The whole list of possible endpoints can be accessed here http://developer.zeit.de/docs/.
# NOT RUN {
get_content(query = "Merkel")
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab