Jump to content
McKay Development

Claude

Member
  • Posts

    2
  • Joined

  • Last visited

Claude's Achievements

  1. Thanks, awesome! Interesting how the store partitions them into different buckets. After already scraping category-names of ~1200 games from store.steampowered.com/api/appdetails, your tips yielded three i didn't already know. great! Those games, when querying the client (app_info_print), yield category id's undiscoverable via the store (api, search page and game pages): 12,33,45,46. (the latter two match 35% of the games, while the first tow match ~1% and ~5% respectively. at least to me there is no obvious pattern...) Additionally i'm missing names of categories 3-5,11,26,34, plus anything above 53, if that exists. (also totally unknown to the store) Also tried a quick grep to find category-names lying around in steam directories as plaintext. But alas no such luck 🥲 Funny! Did a quick check: out of ~1200 games, 2 match both, 12% match 30, zero match just 51, the rest don't support steam workshop. No clue as to why there are two categories though. And there goes my illusion of valve being great at doing things... 😉 Well i have a guess: whats advertised vs whats actually supported 😎
  2. I there, thanks for developing steam-user! When calling getProductinfo([48240],[]), the returned apps[48240].appinfo.common object contains : genres genres: { '0': '2' }, categories "category":{ "category_2":"1", "category_1":"1", "category_29":"1", "category_45":"1", "category_46":"1" }, But where to get the names/descriptions for these id's? and what's the meaning of "1" behind every category? I've found the following, which looks accurate, but that's just a manually updated partial list of some random dev... https://github.com/woctezuma/steam-api/blob/master/data/genres.json https://github.com/woctezuma/steam-api/blob/master/data/categories.json Also looking at the store page only 2 categories are shown: https://store.steampowered.com/app/48240 While the webapi returns 3 categories: https://store.steampowered.com/api/appdetails?appids=48240 (So i guess some category/genre names can be found out this way. But isn't there a better way?) wtf?
×
×
  • Create New...