user_contributions function

Retrieve user contributions

Retrieve user contributions

Retrieves metadata associated with the most recent contributions by a specified user.

user_contributions( language = NULL, project = NULL, domain = NULL, username, properties = c("ids", "title", "timestamp", "comment", "parsedcomment", "size", "sizediff", "flags", "tags"), mainspace = FALSE, limit = 50, clean_response = FALSE, ... )

Arguments

  • language: The language code of the project you wish to query, if appropriate.
  • project: The project you wish to query ("wikiquote"), if appropriate. Should be provided in conjunction with language.
  • domain: as an alternative to a language and project combination, you can also provide a domain ("rationalwiki.org") to the URL constructor, allowing for the querying of non-Wikimedia MediaWiki instances.
  • username: The username of the user whose contributions you want to retrieve. Due to limitations at the API end, you can only retrieve edits for one user at a time.
  • properties: The metadata you want associated with each edit. Potential metadata includes "ids" (the revision ID of the revision, which can be passed into revision_content), "title" (the name of the page that was edited), "timestamp", "comment" (the edit summary associated with the revision), "parsedcomment" (the same, but parsed, generating HTML from any wikitext in that comment), "size" (the size, in uncompressed bytes, of the edit), "sizediff" (the size delta between this edit, and the last edit to the page), "flags" (whether the revision was 'minor' or not), and "tags" (any tags associated with the revision).
  • mainspace: A boolean flag; FALSE retrieves all of the most recent contributions, while TRUE limits the retrieved contributions to those in the 'mainspace' - in other words, edits to actual articles. Set to FALSE by default
  • limit: The number of edits to be retrieved. 50 is the maximum for logged-out API users, and putting in more than 50 will generate a warning.
  • clean_response: whether to do some basic sanitising of the resulting data structure. Set to FALSE by default.
  • ...: further arguments to pass to httr's GET.

Examples

## Not run: #Retrieve the timestamps of a user's recent contributions to the English-language Wikipedia contribs <- user_contributions("en", "wikipedia", username = "Ironholds", properties = "timestamp") #Retrieve the timestamps of a user's recent contributions to a non-Wikimedia wiki. rw_contribs <- user_contributions(domain = "rationalwiki.org", username = "David Gerard", properties = "ids", limit = 1) ## End(Not run)

See Also

user_information for information about a specific user (or group of users), and recent_changes for non-user-specific recent actions.

  • Maintainer: Os Keyes
  • License: MIT + file LICENSE
  • Last published: 2024-04-05