module Steam::Store

A Ruby DSL for communicating with the Steam Web API. @see developer.valvesoftware.com/wiki/Steam_Web_API @since 1.0.0

Public Class Methods

app_details(appid) click to toggle source

Get App Details @param String appid The UUID of the Steam Application @see wiki.teamfortress.com/wiki/User:RJackson/StorefrontAPI#appdetails

# File lib/steam-api/steam/store.rb, line 9
def self.app_details(appid)
  response = client.get 'appdetails', params: { appids: appid }
  response
end

Private Class Methods

client() click to toggle source
# File lib/steam-api/steam/store.rb, line 16
def self.client
  build_client '', base_url: Steam::Helpers::STORE_API_BASE_URL
end