Module: Steam::Store

Defined in:
lib/steam-api/steam/store.rb

Overview

A Ruby DSL for communicating with the Steam Web API.

Class Method Summary collapse

Class Method Details

.app_details(appid) ⇒ Object

Get App Details

Parameters:

  • String

    appid The UUID of the Steam Application

See Also:

Since:

  • 1.0.0



9
10
11
12
# File 'lib/steam-api/steam/store.rb', line 9

def self.app_details(appid)
  response = client.get 'appdetails', params: { appids: appid }
  response
end