Create utility objects commonly used in the Steam web API.

  • store_data_request specifies which extra information should be included in the API response. It is usually supplied over an argument data_request.

  • store_context specifies the geographic and language context from which to access the Steam store. It is usually supplied over an argument context.

store_data_request(include = NULL, apply_user_filters = FALSE)

store_context(
  language = "english",
  elanguage = NULL,
  country_code = "US",
  steam_realm = 1L
)

Arguments

include

List of extra information to include. Can be one or several of the following: release, platforms, all_purchase_options, screenshots, trailers, ratings, tag_count, reviews, basic_info, supported_languages, full_description, included_items and assets_without_overrides. If all, returns all information.

apply_user_filters

Unknown.

language

ISO 639-1 language code all tokenized strings should be returned in. Not all tokenized strings have a translation for all languages. If no translation is available, defaults to English.

elanguage

Numeric code representing the store language. A list of language codes and their corresponding languages is defined in ELanguage.

country_code

ISO 3166 country code representing the country from which to view the Steam store.

steam_realm

Number describing the Steam realm. A value of 1 indicates Steam Global, 2 indicates Steam China, and 0 indicates Unknown.

Value

store_data_request() returns a list of class StoreBrowseItemDataRequest. store_context() returns a list of class StoreBrowseContext.