Usage
wiki_recentchanges(con, properties = c("user", "userid", "comment",
"parsedcomment", "flags", "timestamp",
"title", "ids", "sizes", "redirect",
"loginfo", "tags", "sha1"),
type = c("edit", "external", "new", "log"),
tag = NULL, dir = "newer", limit = 50, top = FALSE)
Arguments
con
A connector object, generated by wiki_con
, that corresponds to the project you're trying to query. properties
Properties you're trying to retrieve about each entry, Options include "user" (the username of the person responsible for that entry), "userid" (the userID of said person), "comment" (the edit summary associated with the entry), "parsedcomment" (the same
type
The type of entry you want to retrieve; can be any permutation of "edit" (edits to existing pages), "external" (external actions that impact on the project - primarily wikidata changes), "new" (the creation of new pages) and "log" (log entries). By defaul
tag
Only return items with particular "tags", such as "mobile edit"
dir
Should it go from newest to oldest ("newer"), or oldest to newest ("older")? By default, set to "newer"
limit
The number of entries you'd like to return. By default, set to 50, which is also the maximum number per-request for logged-out users.
top
Should the request only return "top" entries - in other words, the most recent entry on a page? Set to FALSE by default.