If a user has a public profile, you can add "games?xml=1" at the end of the url to get this list.
In your case: http://steamcommunity.com/id/Sighery/games?xml=1
Then you could use the console of your browser to get the wanted array.
If you require only appIDs
var list = document.getElementsByTagName('appID');
var requiredArray = [];
for(var i=0; i<list.length; i++)
requiredArray.push(list[i].textContent);
Edit: you could also give a look here
Comment has been collapsed.
Avevo già recuperato la lista tramite steamdb, comunque grazie, probabilmente mi tornerà utile in futuro !
Comment has been collapsed.
https://steamdb.info/myapps/ is the best I know. You can sort by title or by app id too.
(But you probably know about that since you linked from this site as well.)
Comment has been collapsed.
7 Comments - Last post 1 minute ago by lostsoul67
738 Comments - Last post 6 minutes ago by KingLuiso
19 Comments - Last post 27 minutes ago by vlbastos
9 Comments - Last post 38 minutes ago by nonegiven
464 Comments - Last post 39 minutes ago by duville
4 Comments - Last post 41 minutes ago by katukinabarra
7 Comments - Last post 58 minutes ago by Bigshrimp
9,470 Comments - Last post 21 seconds ago by Sno1
7 Comments - Last post 1 minute ago by Drughi14
28,470 Comments - Last post 10 minutes ago by GuiDoteiro
445 Comments - Last post 10 minutes ago by Goodluck
2,116 Comments - Last post 11 minutes ago by GuilhermeSLFA
28 Comments - Last post 15 minutes ago by Mirajna
28 Comments - Last post 19 minutes ago by antidaz
I need a list like the one you get on steamdb -> https://steamdb.info/calculator/
basically... an array with id of the games I have in my account.
Before building that list on my own, (as I'm lazy as fuck) I would like to know if I can get that somewhere in the internet
Comment has been collapsed.