module SteamApp

Public Class Methods

get_news(appid, count='1', maxlength=nil) click to toggle source

ISteamNews

# File lib/steamwebapi/app.rb, line 6
def self.get_news(appid, count='1', maxlength=nil)
  args = {appid: appid, count: count, maxlength: maxlength}
  SteamAPI.get('ISteamNews', 'GetNewsForApp', 'v0002', args)
end