Method: Steam::Store.app_details

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

.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