Retrieves user-provided tags in the Steam store with different emphases and orders. get_tags and get_most_popular_tags operate on tags in the entire Steam store. get_frequent_tags and get_recommended_tags are specifically based on the authenticated user.

get_tags(language = "english", hash = NULL)

get_most_popular_tags(language = "english")

get_frequent_tags()

get_recommended_tags()

Arguments

hash

Hash included in the hash attribute of a previous function call. If hash matches with the hash of the requested tags, then a DuplicateRequest error is thrown.

Value

All functions return a dataframe containing the tagIDs and tag names. get_tags returns all known tags sorted by their tagID. get_most_popular_tags returns the most popular tags sorted by their popularity. get_frequent_tags returns the most frequent tags by the authenticated user sorted by the count in the count column. get_recommended_tags returns tags recommended by the Steam algorithm with a secret sorting.

Examples

if (FALSE) { # \dontrun{
# get all tags
get_tags()

# get the most popular tags translated to German
get_most_popular_tags(language = "DE")

# requires authentication
auth_credentials("username")
get_frequent_tags()
get_recommended_tags()
} # }