Getting someone’s Steam inventory

New Endpoint There is a new end point for fetching inventories as of December 2016. The old one listed below still works (for now). Both seem to be highly ratelimited. The new inventory path is: http://steamcommunity.com/inventory/<PROFILEID>/440/2?l=english&count=5000 With this new path, l is the language you want to receive data back in and count is the … Read more

writing a constructor in java

You need to add instance variables for the four fields, then use these in your code. So in the constructor you would be setting the values for these instance variables (these values will be sent to the constructor generally from another class). private String description; private String dept; private int units; private double price; public … Read more