Open nmalacarne opened 9 years ago
Leaving out certain steamObj parameters while using the getOwnedGames method results in thrown Errors.
getOwnedGames
/node_modules/steam-webapi/index.js:129 throw new Error("Missing required field: "+key); Error: Missing required field: include_appinfo /node_modules/steam-webapi/index.js:129 throw new Error("Missing required field: "+key); Error: Missing required field: include_played_free_games /node_modules/steam-webapi/index.js:129 throw new Error("Missing required field: "+key); Error: Missing required field: appids_filter
/node_modules/steam-webapi/index.js:129 throw new Error("Missing required field: "+key); Error: Missing required field: include_appinfo
/node_modules/steam-webapi/index.js:129 throw new Error("Missing required field: "+key); Error: Missing required field: include_played_free_games
/node_modules/steam-webapi/index.js:129 throw new Error("Missing required field: "+key); Error: Missing required field: appids_filter
Is this intended behavior? Documentation for getOwnedGames states: 'Free games are excluded by default.'
Ah yes, that does seem quite confusing. But, it's listed as a non-optional field in getSupportedAPIList(), which the library respects, over the deceptive description.
Leaving out certain steamObj parameters while using the
getOwnedGames
method results in thrown Errors.Is this intended behavior? Documentation for
getOwnedGames
states: 'Free games are excluded by default.'